Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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