Skip to content

Commit

Permalink
Version 0.14.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
devinrsmith committed Nov 15, 2023
1 parent b8c2670 commit f44a7aa
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.12.0'
implementation 'io.deephaven:deephaven-csv:0.13.0'
// Optional dependency for faster double parsing
// runtimeOnly 'io.deephaven:deephaven-csv-fast-double-parser:0.12.0'
// runtimeOnly 'io.deephaven:deephaven-csv-fast-double-parser:0.13.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.12.0</version>
<version>0.13.0</version>
</dependency>

<!-- Optional dependency for faster double parsing -->
<!--<dependency>-->
<!-- <groupId>io.deephaven</groupId>-->
<!-- <artifactId>deephaven-csv-fast-double-parser</artifactId>-->
<!-- <version>0.12.0</version>-->
<!-- <version>0.13.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.12.0-SNAPSHOT-jmh.jar -prof gc -rf JSON
java -jar build/libs/deephaven-csv-0.14.0-SNAPSHOT-jmh.jar -prof gc -rf JSON
```

```shell
java -jar build/libs/deephaven-csv-0.12.0-SNAPSHOT-jmh.jar -prof gc -rf JSON <regex>
java -jar build/libs/deephaven-csv-0.14.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.13.0
version=0.14.0-SNAPSHOT

0 comments on commit f44a7aa

Please sign in to comment.