Skip to content

Commit

Permalink
Changed commit separator to be a bullet arrow instead of dashes on th…
Browse files Browse the repository at this point in the history
…eir own line.
  • Loading branch information
jasonconnery committed May 31, 2018
1 parent 353426b commit 0b3a848
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ apply plugin: 'java'


sourceCompatibility = 1.8
version = '4.1.0'
version = '4.1.1'

configurations {
deploy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,11 @@ private JsonObject createCommitAttachment(SRunningBuild build) {
for ( int i = 0 ; i < changes.size() ; i++ ){
SVcsModification modification = changes.get(i);
String desc = modification.getDescription();
commitMessage.append("‣ ");
commitMessage.append(desc);

if( i < changes.size() - 1 ) {
commitMessage.append("\n------\n");
commitMessage.append("\n");
}
}

Expand Down
2 changes: 1 addition & 1 deletion teamcity-plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<info>
<name>slackNotifier</name> <!-- the name of plugin used in teamcity -->
<display-name>Slack Notifier</display-name>
<version>4.1.0</version>
<version>4.1.1</version>
<description>Post build success notifications to Slack</description>
<vendor>
<name>Tapadoo</name>
Expand Down

0 comments on commit 0b3a848

Please sign in to comment.