@@ -74,10 +74,10 @@ This project produces two JARs:
74
74
To depend on Deephaven CSV from Gradle, add the following dependency(s) to your build.gradle file:
75
75
76
76
``` groovy
77
- implementation 'io.deephaven:deephaven-csv:0.14 .0'
77
+ implementation 'io.deephaven:deephaven-csv:0.15 .0'
78
78
79
79
// Optional dependency for faster double parsing
80
- // runtimeOnly 'io.deephaven:deephaven-csv-fast-double-parser:0.14 .0'
80
+ // runtimeOnly 'io.deephaven:deephaven-csv-fast-double-parser:0.15 .0'
81
81
```
82
82
83
83
### Maven
@@ -88,14 +88,14 @@ To depend on Deephaven CSV from Maven, add the following dependency(s) to your p
88
88
<dependency >
89
89
<groupId >io.deephaven</groupId >
90
90
<artifactId >deephaven-csv</artifactId >
91
- <version >0.14 .0</version >
91
+ <version >0.15 .0</version >
92
92
</dependency >
93
93
94
94
<!-- Optional dependency for faster double parsing -->
95
95
<!-- <dependency>-->
96
96
<!-- <groupId>io.deephaven</groupId>-->
97
97
<!-- <artifactId>deephaven-csv-fast-double-parser</artifactId>-->
98
- <!-- <version>0.14 .0</version>-->
98
+ <!-- <version>0.15 .0</version>-->
99
99
<!-- <scope>runtime</scope>-->
100
100
<!-- </dependency>-->
101
101
```
@@ -154,11 +154,11 @@ If you prefer, you can run the benchmarks directly via the JMH jar:
154
154
```
155
155
156
156
``` shell
157
- java -jar build/libs/deephaven-csv-0.14 .0-SNAPSHOT-jmh.jar -prof gc -rf JSON
157
+ java -jar build/libs/deephaven-csv-0.15 .0-SNAPSHOT-jmh.jar -prof gc -rf JSON
158
158
```
159
159
160
160
``` shell
161
- java -jar build/libs/deephaven-csv-0.14 .0-SNAPSHOT-jmh.jar -prof gc -rf JSON < regex>
161
+ java -jar build/libs/deephaven-csv-0.15 .0-SNAPSHOT-jmh.jar -prof gc -rf JSON < regex>
162
162
```
163
163
164
164
The JMH jar is the preferred way to run official benchmarks, and provides a common bytecode for sharing the benchmarks
0 commit comments