Skip to content

Commit

Permalink
Merge pull request #335 from itsallcode/prepare-release-3.6.0
Browse files Browse the repository at this point in the history
Prepare release 3.6.0
  • Loading branch information
kaklakariada authored Aug 21, 2022
2 parents 063e23b + 241fe26 commit b74acee
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ OpenFastTrace at it's core is a Java Archive (short "[JAR](https://docs.oracle.c

### Getting Pre-Built Packages

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

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

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.

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

```bash
java -jar product/target/openfasttrace-2.3.5.jar trace /path/to/directory/being/traced
java -jar product/target/openfasttrace-3.6.0.jar trace /path/to/directory/being/traced
```

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).
Expand Down
2 changes: 2 additions & 0 deletions doc/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]

## [3.6.0] - 2022-08-21

### Added

- 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)
Expand Down
4 changes: 2 additions & 2 deletions doc/developer_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ To use OpenFastTrace as a dependency in your [Maven](https://maven.apache.org) p
<dependency>
<groupId>org.itsallcode.openfasttrace</groupId>
<artifactId>openfasttrace</artifactId>
<version>3.5.0</version>
<version>3.6.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
Expand All @@ -27,7 +27,7 @@ To use OpenFastTrace as a dependency in your [Gradle](https://gradle.org/) proje

```groovy
dependencies {
compile "org.itsallcode.openfasttrace:openfasttrace:3.5.0"
compile "org.itsallcode.openfasttrace:openfasttrace:3.6.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<description>Free requirement tracking suite</description>
<url>https://github.com/itsallcode/openfasttrace</url>
<properties>
<revision>3.5.0</revision>
<revision>3.6.0</revision>
<java.version>11</java.version>
<junit.version>5.9.0</junit.version>
<maven.surefire.version>3.0.0-M7</maven.surefire.version>
Expand Down

0 comments on commit b74acee

Please sign in to comment.