Skip to content

Commit b74acee

Browse files
authored
Merge pull request #335 from itsallcode/prepare-release-3.6.0
Prepare release 3.6.0
2 parents 063e23b + 241fe26 commit b74acee

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ OpenFastTrace at it's core is a Java Archive (short "[JAR](https://docs.oracle.c
5353

5454
### Getting Pre-Built Packages
5555

56-
Pre-Built JAR files (called `openfasttrace-3.5.0.jar`) are available from the following places:
56+
Pre-Built JAR files (called `openfasttrace-3.6.0.jar`) are available from the following places:
5757

58-
* [Maven Central](https://repo1.maven.org/maven2/org/itsallcode/openfasttrace/openfasttrace/3.5.0/openfasttrace-3.5.0.jar)
59-
* [GitHub](https://github.com/itsallcode/openfasttrace/releases/download/3.5.0/openfasttrace-3.5.0.jar)
58+
* [Maven Central](https://repo1.maven.org/maven2/org/itsallcode/openfasttrace/openfasttrace/3.6.0/openfasttrace-3.6.0.jar)
59+
* [GitHub](https://github.com/itsallcode/openfasttrace/releases/download/3.6.0/openfasttrace-3.6.0.jar)
6060

6161
Check our [developer guide](doc/developer_guide.md#getting-the-openfasttrace-library) to learn how to use the OFT JAR as dependency in your own code with popular build tools.
6262

@@ -79,7 +79,7 @@ If you just want to run OFT:
7979
The most basic variant to run OpenFastTrace is directly from the JAR file via the command line:
8080

8181
```bash
82-
java -jar product/target/openfasttrace-2.3.5.jar trace /path/to/directory/being/traced
82+
java -jar product/target/openfasttrace-3.6.0.jar trace /path/to/directory/being/traced
8383
```
8484

8585
If you want to run OFT automatically as part of a continuous build, we recommend using our plugins for [Gradle](https://github.com/itsallcode/openfasttrace-gradle) and [Maven](https://github.com/itsallcode/openfasttrace-maven-plugin).

doc/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.6.0] - 2022-08-21
10+
911
### Added
1012

1113
- Added support for C# files with postfix `.cs` [#326](https://github.com/itsallcode/openfasttrace/issues/326) / [PR #327](https://github.com/itsallcode/openfasttrace/pull/327)

doc/developer_guide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ To use OpenFastTrace as a dependency in your [Maven](https://maven.apache.org) p
1515
<dependency>
1616
<groupId>org.itsallcode.openfasttrace</groupId>
1717
<artifactId>openfasttrace</artifactId>
18-
<version>3.5.0</version>
18+
<version>3.6.0</version>
1919
<scope>compile</scope>
2020
</dependency>
2121
</dependencies>
@@ -27,7 +27,7 @@ To use OpenFastTrace as a dependency in your [Gradle](https://gradle.org/) proje
2727

2828
```groovy
2929
dependencies {
30-
compile "org.itsallcode.openfasttrace:openfasttrace:3.5.0"
30+
compile "org.itsallcode.openfasttrace:openfasttrace:3.6.0"
3131
}
3232
```
3333

parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<description>Free requirement tracking suite</description>
99
<url>https://github.com/itsallcode/openfasttrace</url>
1010
<properties>
11-
<revision>3.5.0</revision>
11+
<revision>3.6.0</revision>
1212
<java.version>11</java.version>
1313
<junit.version>5.9.0</junit.version>
1414
<maven.surefire.version>3.0.0-M7</maven.surefire.version>

0 commit comments

Comments
 (0)