Skip to content

Commit

Permalink
Version 0.4.10
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed Mar 1, 2021
1 parent 3210be4 commit 8737702
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,14 @@ If you use [Clojure CLI](https://clojure.org/guides/deps_and_cli) and

```Clojure
{:deps
{datalevin/datalevin {:mvn/version "0.4.9"}}}
{datalevin/datalevin {:mvn/version "0.4.10"}}}
```

If you use [Leiningen](https://leiningen.org/) build tool, add this to the
`:dependencies` section of your `project.clj` file:

```Clojure
[datalevin "0.4.9"]
[datalevin "0.4.10"]
```

### Native image and command line tool
Expand All @@ -106,13 +106,13 @@ query/transaction execution, and so on.

Download the pre-built binary for amd64 platform:

* [Linux](https://github.com/juji-io/datalevin/releases/download/0.4.9/dtlv-0.4.9-macos-latest-amd64.zip)
* [MacOS](https://github.com/juji-io/datalevin/releases/download/0.4.9/dtlv-0.4.9-macos-latest-amd64.zip)
* [Linux](https://github.com/juji-io/datalevin/releases/download/0.4.10/dtlv-0.4.10-macos-latest-amd64.zip)
* [MacOS](https://github.com/juji-io/datalevin/releases/download/0.4.10/dtlv-0.4.10-macos-latest-amd64.zip)

Put it on your path and execute `dtlv help`:

```console
Datalevin (version: 0.4.9)
Datalevin (version: 0.4.10)

Usage: dtlv [options] [command] [arguments]

Expand Down Expand Up @@ -381,7 +381,7 @@ If you are interested in using the dialect of Datalog pioneered by Datomic®, he

* If you need a simple and fast durable store with a battle tested backend, give [Datalevin](https://github.com/juji-io/datalevin) a try.

Version: 0.4.9
Version: 0.4.10

## License

Expand Down
2 changes: 1 addition & 1 deletion native/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "0.4.9")
(def version "0.4.10")

(defproject datalevin-native version
:description "Datalevin running in GraalVM native image, and it can also run as a command line tool for Datalevin"
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "0.4.9")
(def version "0.4.10")

(defproject datalevin version
:description "A simple, fast and durable Datalog database"
Expand Down
2 changes: 1 addition & 1 deletion src/datalevin/main.clj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
[java.lang RuntimeException])
(:gen-class))

(def version "0.4.9")
(def version "0.4.10")

(def version-str
(str
Expand Down

0 comments on commit 8737702

Please sign in to comment.