@@ -11,14 +11,14 @@ If you use [Leiningen](https://leiningen.org/) build tool, add this to the
11
11
` :dependencies ` section of your ` project.clj ` file:
12
12
13
13
``` Clojure
14
- [datalevin " 0.9.13 " ]
14
+ [datalevin " 0.9.14 " ]
15
15
```
16
16
17
17
If you use [ Clojure CLI] ( https://clojure.org/guides/deps_and_cli ) and
18
18
` deps.edn ` , declare the dependency like so:
19
19
20
20
``` Clojure
21
- {:deps {datalevin/datalevin {:mvn/version " 0.9.13 " }
21
+ {:deps {datalevin/datalevin {:mvn/version " 0.9.14 " }
22
22
com.cognitect/transit-clj {:mvn/version " 1.0.333" }
23
23
io.airlift/aircompressor {:mvn/version " 0.26" }}}
24
24
```
@@ -124,18 +124,18 @@ See [README on Docker hub](https://hub.docker.com/r/huahaiy/datalevin) for usage
124
124
125
125
Or download the executable binary from github:
126
126
127
- * [ Linux] ( https://github.com/juji-io/datalevin/releases/download/0.9.13 /dtlv-0.9.13 -ubuntu-latest-amd64.zip )
127
+ * [ Linux] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -ubuntu-latest-amd64.zip )
128
128
on x86-64 (AMD64)
129
- * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.13 /dtlv-0.9.13 -macos-latest-aarch64.zip )
129
+ * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -macos-latest-aarch64.zip )
130
130
on arm64 (AARCH64)
131
- * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.13 /dtlv-0.9.13 -macos-latest-amd64.zip )
131
+ * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -macos-latest-amd64.zip )
132
132
on x86-64 (AMD64)
133
- * [ Windows] ( https://github.com/juji-io/datalevin/releases/download/0.9.13 /dtlv-0.9.13 -windows-amd64.zip ) on x86-64 (AMD64)
133
+ * [ Windows] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -windows-amd64.zip ) on x86-64 (AMD64)
134
134
135
135
Unzip, put it on your path, and execute ` dtlv help ` :
136
136
137
137
``` console
138
- Datalevin (version: 0.9.13 )
138
+ Datalevin (version: 0.9.14 )
139
139
140
140
Usage: dtlv [options] [command] [arguments]
141
141
@@ -172,7 +172,7 @@ Type 'dtlv help <command>' to read about a specific command.
172
172
Starting ` dtlv ` without any arguments goes into the console:
173
173
174
174
``` console
175
- Datalevin (version: 0.9.13 )
175
+ Datalevin (version: 0.9.14 )
176
176
177
177
Type (help) to see available functions. Some Clojure core functions are also available.
178
178
Type (exit) to exit.
@@ -231,20 +231,20 @@ You may want to launch `dtlv` in `rlwrap` to get a better REPL experience.
231
231
### Uberjar
232
232
233
233
A JVM
234
- [ uberjar] ( https://github.com/juji-io/datalevin/releases/download/0.9.13 /datalevin-0.9.13 -standalone.jar )
234
+ [ uberjar] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /datalevin-0.9.14 -standalone.jar )
235
235
is downloadable to use as the command line tool. It is useful when one wants to
236
236
run a Datalevin server and needs the efficiency of JVM's JIT, as GraalVM native
237
237
image is AOT and not as efficient as JVM for long running programs, or when a
238
238
pre-built native version is not available for your platform. For example,
239
239
assuming your Java is newer than version 11:
240
240
241
241
``` console
242
- java --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -jar datalevin-0.9.13 -standalone.jar
242
+ java --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -jar datalevin-0.9.14 -standalone.jar
243
243
```
244
244
This will start the Datalevin REPL.
245
245
246
246
``` console
247
- java --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -jar datalevin-0.9.13 -standalone.jar serv -r /tmp/test-server
247
+ java --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -jar datalevin-0.9.14 -standalone.jar serv -r /tmp/test-server
248
248
```
249
249
Will run the Datalevin server on default port 8898, with root data path at
250
250
` /tmp/test-server ` .
@@ -262,7 +262,7 @@ registry](https://github.com/babashka/pod-registry) within a Babashka script
262
262
#!/usr/bin/env bb
263
263
264
264
(require '[babashka.pods :as pods])
265
- (pods/load-pod 'huahaiy/datalevin "0.9.13 ")
265
+ (pods/load-pod 'huahaiy/datalevin "0.9.14 ")
266
266
267
267
```
268
268
0 commit comments