Skip to content

Commit 94b2c24

Browse files
authored
Increment version (#455)
Co-authored-by: kaklakariada <[email protected]>
1 parent 9809a0e commit 94b2c24

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

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

7373
### Getting Pre-Built Packages
7474

75-
Pre-Built JAR files (called `openfasttrace-4.1.0.jar`) are available from the following places:
75+
Pre-Built JAR files (called `openfasttrace-4.2.0.jar`) are available from the following places:
7676

77-
* [Maven Central](https://repo1.maven.org/maven2/org/itsallcode/openfasttrace/openfasttrace/4.1.0/openfasttrace-4.1.0.jar)
78-
* [GitHub](https://github.com/itsallcode/openfasttrace/releases/download/4.1.0/openfasttrace-4.1.0.jar)
77+
* [Maven Central](https://repo1.maven.org/maven2/org/itsallcode/openfasttrace/openfasttrace/4.2.0/openfasttrace-4.2.0.jar)
78+
* [GitHub](https://github.com/itsallcode/openfasttrace/releases/download/4.2.0/openfasttrace-4.2.0.jar)
7979

8080
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.
8181

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

101101
```bash
102-
java -jar product/target/openfasttrace-4.1.0.jar trace /path/to/directory/being/traced
102+
java -jar product/target/openfasttrace-4.2.0.jar trace /path/to/directory/being/traced
103103
```
104104

105105
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/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>4.1.0</version>
18+
<version>4.2.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:4.1.0"
30+
compile "org.itsallcode.openfasttrace:openfasttrace:4.2.0"
3131
}
3232
```
3333

parent/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<description>Free requirement tracking suite</description>
1111
<url>https://github.com/itsallcode/openfasttrace</url>
1212
<properties>
13-
<revision>4.1.0</revision>
13+
<revision>4.2.0</revision>
1414
<java.version>17</java.version>
1515
<junit.version>5.12.2</junit.version>
1616
<maven.surefire.version>3.5.3</maven.surefire.version>

0 commit comments

Comments
 (0)