Skip to content

Commit

Permalink
Merge pull request #12 from shipkit/sf
Browse files Browse the repository at this point in the history
Fixed broken links
  • Loading branch information
mockitoguy committed Jul 15, 2020
2 parents 27e9561 + 063dae4 commit e94f5d4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions gradle/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ gradlePlugin {
}

pluginBundle {
website = 'https://github.com/shipkit/org.shipkit.shipkit-changelog'
vcsUrl = 'https://github.com/shipkit/org.shipkit.shipkit-changelog.git'
website = 'https://github.com/shipkit/shipkit-changelog'
vcsUrl = 'https://github.com/shipkit/shipkit-changelog.git'
plugins {
changelog {
displayName = 'Shipkit changelog plugin'
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/shipkit/changelog/ChangelogFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public static String formatChangelog(Collection<String> contributors, Collection
"@improvements@";

Map<String, String> data = new HashMap<String, String>() {{
put("header", "<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/org.shipkit.shipkit-changelog)*</sup></sup>");
put("header", "<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/shipkit-changelog)*</sup></sup>");
put("version", version);
put("date", date);
put("commitCount", "" + commitCount);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class ChangelogFormatTest extends Specification {
"2020-01-01")

then:
changelog == """<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/org.shipkit.shipkit-changelog)*</sup></sup>
changelog == """<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/shipkit-changelog)*</sup></sup>
#### 1.0.0
- 2020-01-01 - [5 commit(s)](https://github.com/myorg/myrepo/compare/v0.0.9...v1.0.0) by mockitoguy, john
Expand All @@ -30,7 +30,7 @@ class ChangelogFormatTest extends Specification {
"2020-01-01")

then:
changelog == """<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/org.shipkit.shipkit-changelog)*</sup></sup>
changelog == """<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/shipkit-changelog)*</sup></sup>
#### 2.0.0
- 2020-01-01 - [2 commit(s)](https://github.com/myorg/myrepo/compare/v1.5.5...v2.0.0) by mockitoguy
Expand Down

0 comments on commit e94f5d4

Please sign in to comment.