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: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
```

Expand Down Expand Up @@ -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
```

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down