Skip to content

Commit 769839d

Browse files
committed
Bump version to 0.3.1
1 parent 3da7dfd commit 769839d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ cd hadroNIO/
4141
./gradlew shadowJar
4242
```
4343

44-
The JAR-file should now be located at `build/provider/libs/hadronio-0.3.0-SNAPSHOT-all.jar`.
44+
The JAR-file should now be located at `build/provider/libs/hadronio-0.3.1-SNAPSHOT-all.jar`.
4545

4646
### Known issues
4747

@@ -53,7 +53,7 @@ To run hadroNIO, **UCX 1.12.1-rc3** needs to be installed on your system. See th
5353

5454
To accelerate an existing Java application (e.g. `application.jar`), the hadroNIO JAR-file needs to be included in the classpath. Additionally, the property `java.nio.channels.spi.SelectorProvider` must be set to `de.hhu.bsinfo.hadronio.HadronioProvider`:
5555
```shell
56-
java -cp path/to/hadronio-0.3.0-SNAPSHOT-all.jar -Djava.nio.channels.spi.SelectorProvider=de.hhu.bsinfo.hadronio.HadronioProvider -jar application.jar
56+
java -cp path/to/hadronio-0.3.1-SNAPSHOT-all.jar -Djava.nio.channels.spi.SelectorProvider=de.hhu.bsinfo.hadronio.HadronioProvider -jar application.jar
5757
```
5858

5959
### Enable logging
@@ -227,7 +227,7 @@ repositories {
227227
}
228228
229229
dependencies {
230-
implementation 'de.hhu.bsinfo:hadronio:0.3.0'
230+
implementation 'de.hhu.bsinfo:hadronio:0.3.1'
231231
}
232232
```
233233

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ext {
2-
projectVersion = '0.3.0' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
2+
projectVersion = '0.3.1' + (Boolean.valueOf(System.getProperty('release')) ? '' : '-SNAPSHOT')
33

44
buildConfigVersion = '1.1.8'
55
gitVersionVersion = '0.12.2'

0 commit comments

Comments
 (0)