From f44a7aa3ab8db4136f0b11d00f2e4449f25a0006 Mon Sep 17 00:00:00 2001 From: Devin Smith Date: Wed, 15 Nov 2023 11:36:56 -0800 Subject: [PATCH] Version 0.14.0-SNAPSHOT --- README.md | 12 ++++++------ gradle.properties | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 595f7723..8d39fca3 100644 --- a/README.md +++ b/README.md @@ -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 @@ -88,14 +88,14 @@ To depend on Deephaven CSV from Maven, add the following dependency(s) to your p io.deephaven deephaven-csv - 0.12.0 + 0.13.0 - + ``` @@ -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 +java -jar build/libs/deephaven-csv-0.14.0-SNAPSHOT-jmh.jar -prof gc -rf JSON ``` The JMH jar is the preferred way to run official benchmarks, and provides a common bytecode for sharing the benchmarks diff --git a/gradle.properties b/gradle.properties index f6cee237..083f6652 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.13.0 +version=0.14.0-SNAPSHOT