diff --git a/CHANGELOG.md b/CHANGELOG.md index baa8dd9..0a9afa7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0] - 2022-08-21 + ### Changed - [PR #24](https://github.com/itsallcode/openfasttrace-gradle/pull/24): @@ -18,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Gradle 6.0 is no longer supported. - Build and test with Java 17. Please note that Java 17 is only supported with Gradle 7.5+. - [PR #33](https://github.com/itsallcode/openfasttrace-gradle/pull/33): Removed license header from sources +- [PR #34](https://github.com/itsallcode/openfasttrace-gradle/pull/34): Prepare release + - This upgrades to [OpenFastTrace 3.6.0](https://github.com/itsallcode/openfasttrace/releases/tag/3.6.0) ## [0.9.0] - 2021-05-30 diff --git a/README.md b/README.md index b19c8bc..71c49eb 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Gradle plugin for the requirement tracing suite [OpenFastTrace](https://github.c ```gradle plugins { - id "org.itsallcode.openfasttrace" version "0.9.0" + id "org.itsallcode.openfasttrace" version "1.0.0" } ``` @@ -123,8 +123,8 @@ See [dependency-config](https://github.com/itsallcode/openfasttrace-gradle/tree/ ## Development ```bash -$ git clone https://github.com/itsallcode/openfasttrace-gradle-gradle.git -$ ./gradlew check +git clone https://github.com/itsallcode/openfasttrace-gradle-gradle.git +./gradlew check # Test report: build/reports/tests/index.html ``` diff --git a/build.gradle b/build.gradle index d76b823..68a52db 100644 --- a/build.gradle +++ b/build.gradle @@ -14,14 +14,14 @@ repositories { apply from: 'gradle/workAroundJacocoGradleTestKitIssueOnWindows.gradle' -version = '0.9.0' +version = '1.0.0' group = 'org.itsallcode' sourceCompatibility = 11 targetCompatibility = 11 ext { gradlePluginId = 'org.itsallcode.openfasttrace' - oftVersion = '3.5.0' + oftVersion = '3.6.0' junitVersion = '5.9.0' if (project.hasProperty('oftSourceDir')) { oftSourceDir = file(project.oftSourceDir)