Skip to content

Commit

Permalink
Merge pull request #59 from DeveloperUtils/GH-57_changelog
Browse files Browse the repository at this point in the history
fix CHANGELOG.md
  • Loading branch information
WorkingDevel authored Aug 6, 2022
2 parents 1555614 + 6f9b7e2 commit bce40ab
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 0 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
- Update kotlin to v1.7.10
- Update `platformVersion` to `2021.3.3`
- Change since/until build to `213-222.*` (2021.3 - 2022.2)
### Fixed
### Security
### Deprecated
### Removed

## [2022.1.0]
### Changed
Expand Down
8 changes: 7 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ kotlin {
languageVersion.set(JavaLanguageVersion.of(11))
}
}

dependencies {
detektPlugins("io.gitlab.arturbosch.detekt:detekt-formatting:1.18.1")
}
Expand All @@ -48,7 +49,12 @@ intellij {
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
changelog {
version.set(properties("pluginVersion"))
groups.set(emptyList())
// path.set("${project.projectDir}/CHANGELOG.md")
// header.set(provider { "[${version.get()}]" })
// itemPrefix.set("-")
// keepUnreleasedSection.set(true)
// unreleasedTerm.set("[Unreleased]")
groups.set(listOf("Added", "Changed", "Deprecated", "Removed", "Fixed", "Security"))
}

// Configure detekt plugin.
Expand Down

0 comments on commit bce40ab

Please sign in to comment.