Skip to content

Commit

Permalink
Merge pull request #88 from Oleksandr-prog/revert-12-sf
Browse files Browse the repository at this point in the history
Revert "Fixed broken links"
  • Loading branch information
mockitoguy authored Feb 25, 2021
2 parents e720c39 + 8fc10a7 commit df16f98
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/shipkit-changelog'
vcsUrl = 'https://github.com/shipkit/shipkit-changelog.git'
website = 'https://github.com/shipkit/org.shipkit.shipkit-changelog'
vcsUrl = 'https://github.com/shipkit/org.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/shipkit-changelog)*</sup></sup>");
put("header", "<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/org.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/shipkit-changelog)*</sup></sup>
changelog == """<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/org.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/shipkit-changelog)*</sup></sup>
changelog == """<sup><sup>*Changelog generated by [Shipkit Changelog Gradle Plugin](https://github.com/shipkit/org.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 df16f98

Please sign in to comment.