Skip to content

Commit

Permalink
Bump to version 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Nov 8, 2024
1 parent f9293f1 commit e25d46d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ This project produces two JARs:
To depend on Deephaven CSV from Gradle, add the following dependency(s) to your build.gradle file:

```groovy
implementation 'io.deephaven:deephaven-csv:0.14.0'
implementation 'io.deephaven:deephaven-csv:0.15.0'
// Optional dependency for faster double parsing
// runtimeOnly 'io.deephaven:deephaven-csv-fast-double-parser:0.14.0'
// runtimeOnly 'io.deephaven:deephaven-csv-fast-double-parser:0.15.0'
```

### Maven
Expand All @@ -88,14 +88,14 @@ To depend on Deephaven CSV from Maven, add the following dependency(s) to your p
<dependency>
<groupId>io.deephaven</groupId>
<artifactId>deephaven-csv</artifactId>
<version>0.14.0</version>
<version>0.15.0</version>
</dependency>

<!-- Optional dependency for faster double parsing -->
<!--<dependency>-->
<!-- <groupId>io.deephaven</groupId>-->
<!-- <artifactId>deephaven-csv-fast-double-parser</artifactId>-->
<!-- <version>0.14.0</version>-->
<!-- <version>0.15.0</version>-->
<!-- <scope>runtime</scope>-->
<!--</dependency>-->
```
Expand Down Expand Up @@ -154,11 +154,11 @@ If you prefer, you can run the benchmarks directly via the JMH jar:
```

```shell
java -jar build/libs/deephaven-csv-0.14.0-SNAPSHOT-jmh.jar -prof gc -rf JSON
java -jar build/libs/deephaven-csv-0.15.0-SNAPSHOT-jmh.jar -prof gc -rf JSON
```

```shell
java -jar build/libs/deephaven-csv-0.14.0-SNAPSHOT-jmh.jar -prof gc -rf JSON <regex>
java -jar build/libs/deephaven-csv-0.15.0-SNAPSHOT-jmh.jar -prof gc -rf JSON <regex>
```

The JMH jar is the preferred way to run official benchmarks, and provides a common bytecode for sharing the benchmarks
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.15.0-SNAPSHOT
version=0.15.0

0 comments on commit e25d46d

Please sign in to comment.