Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Preparing release.
Browse files Browse the repository at this point in the history
  • Loading branch information
parautenbach committed Aug 3, 2014
1 parent 3f19c33 commit d773232
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Version 0.6.2
* Bug: Point the link in the message (default template) to the build configuration rather than the project (#28).
* Bug: Build ID wasn't corrected formatted as a string (#29).
* Bug: Links to a build ID don't require the build type ID anymore, since TeamCity 8 (#30, #31).

Version 0.6.1
* Bug: Large GET request when submitting plugin configuration (due to the templates) can cause a 404 on some setups because of request limits (#26, #27).
* Enhancement: Global setting to only notify on first successful build after a failure, or first failed build after a successful build (#21).
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ For debugging, add the snippets in [`teamcity-server-log4j.xml`](https://github.

# Change log

## Version 0.6.2
* Bug: Point the link in the message (default template) to the build configuration rather than the project (#28).
* Bug: Build ID wasn't corrected formatted as a string (#29).
* Bug: Links to a build ID don't require the build type ID anymore, since TeamCity 8 (#30, #31).

## Version 0.6.1
* Bug: Large GET request when submitting plugin configuration (due to the templates) can cause a 404 on some setups because of request limits (#26, #27).
* Enhancement: Global setting to only notify on first successful build after a failure, or first failed build after a successful build (#21).
Expand Down
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<property name="reports" location="reports"/>
<property name="main-class" value="HipChatNotifier"/>
<!-- Default to 0.0.0.0 if no version specified -->
<condition property="version" value="${env.BUILD_NUMBER}" else="0.6.1">
<condition property="version" value="${env.BUILD_NUMBER}" else="0.6.2">
<and>
<isset property="env.BUILD_NUMBER"/>
<not>
Expand Down
2 changes: 1 addition & 1 deletion teamcity-plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<name>HipChat Notifier</name>
<display-name>HipChat Notifier</display-name>
<!-- <description>Some description goes here</description> -->
<version>0.6.1</version>
<version>0.6.2</version>
<vendor>
<name>What's That Light?</name>
<url>http://www.whatsthatlight.com/</url>
Expand Down

0 comments on commit d773232

Please sign in to comment.