@@ -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.14 " ]
14
+ [datalevin " 0.9.15 " ]
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.14 " }}}
21
+ {:deps {datalevin/datalevin {:mvn/version " 0.9.15 " }}}
22
22
```
23
23
24
24
This library supports Java 8 and above.
@@ -108,15 +108,15 @@ See [README on Docker hub](https://hub.docker.com/r/huahaiy/datalevin) for usage
108
108
109
109
Or download the executable binary from github:
110
110
111
- * [ Linux] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -ubuntu-latest-amd64.zip )
111
+ * [ Linux] ( https://github.com/juji-io/datalevin/releases/download/0.9.15 /dtlv-0.9.15 -ubuntu-latest-amd64.zip )
112
112
on x86-64 (AMD64)
113
- * [ Linux] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -ubuntu-latest-aarch64.zip )
113
+ * [ Linux] ( https://github.com/juji-io/datalevin/releases/download/0.9.15 /dtlv-0.9.15 -ubuntu-latest-aarch64.zip )
114
114
on arm64 (AARCH64)
115
- * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -macos-latest-aarch64.zip )
115
+ * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.15 /dtlv-0.9.15 -macos-latest-aarch64.zip )
116
116
on arm64 (AARCH64)
117
- * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -macos-latest-amd64.zip )
117
+ * [ MacOS] ( https://github.com/juji-io/datalevin/releases/download/0.9.15 /dtlv-0.9.15 -macos-latest-amd64.zip )
118
118
on x86-64 (AMD64)
119
- * [ Windows] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /dtlv-0.9.14 -windows-amd64.zip ) on x86-64 (AMD64)
119
+ * [ Windows] ( https://github.com/juji-io/datalevin/releases/download/0.9.15 /dtlv-0.9.15 -windows-amd64.zip ) on x86-64 (AMD64)
120
120
121
121
Unzip to get a ` dtlv ` executable, put it on your path.
122
122
@@ -125,20 +125,20 @@ You may want to launch `dtlv` in `rlwrap` to get a better REPL experience.
125
125
### Uberjar
126
126
127
127
A JVM
128
- [ uberjar] ( https://github.com/juji-io/datalevin/releases/download/0.9.14 /datalevin-0.9.14 -standalone.jar )
128
+ [ uberjar] ( https://github.com/juji-io/datalevin/releases/download/0.9.15 /datalevin-0.9.15 -standalone.jar )
129
129
is downloadable to use as the command line tool. It is useful when one wants to
130
130
run a Datalevin server and needs the efficiency of JVM's JIT, as GraalVM native
131
131
image is AOT and not as efficient as JVM for long running programs, or when a
132
132
pre-built native version is not available for your platform. For example,
133
133
assuming your Java is newer than version 11:
134
134
135
135
``` console
136
- 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
136
+ java --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -jar datalevin-0.9.15 -standalone.jar
137
137
```
138
138
This will start the Datalevin REPL.
139
139
140
140
``` console
141
- 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
141
+ java --add-opens=java.base/java.nio=ALL-UNNAMED --add-opens=java.base/sun.nio.ch=ALL-UNNAMED -jar datalevin-0.9.15 -standalone.jar serv -r /tmp/test-server
142
142
```
143
143
Will run the Datalevin server on default port 8898, with root data path at
144
144
` /tmp/test-server ` .
@@ -156,7 +156,7 @@ registry](https://github.com/babashka/pod-registry) within a Babashka script
156
156
#!/usr/bin/env bb
157
157
158
158
(require '[babashka.pods :as pods])
159
- (pods/load-pod 'huahaiy/datalevin "0.9.14 ")
159
+ (pods/load-pod 'huahaiy/datalevin "0.9.15 ")
160
160
161
161
```
162
162
0 commit comments