Skip to content

Commit

Permalink
Version 0.4.16
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed Mar 4, 2021
1 parent c9c5e41 commit 8ef4b34
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## 0.4.16
## Changed
- Native image now bundle liblmdb

## 0.4.13
### Fixed
- Handle list form in query properly in command line shell [#42]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ If you use [Clojure CLI](https://clojure.org/guides/deps_and_cli) and

```Clojure
{:deps
{datalevin/datalevin {:mvn/version "0.4.15"}}}
{datalevin/datalevin {:mvn/version "0.4.16"}}}
```

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

```Clojure
[datalevin "0.4.15"]
[datalevin "0.4.16"]
```

### Native image and command line tool
Expand All @@ -109,13 +109,13 @@ Download the pre-built binary for amd64 platform (for now, you need to install
LMDB first: `brew install lmdb` on MacOS, `sudo apt install liblmdb-dev` on
Ubuntu/Debian, until #38 is resolved):

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

Unzip, put it on your path, and execute `dtlv help`:

```console
Datalevin (version: 0.4.15)
Datalevin (version: 0.4.16)

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

Expand Down Expand Up @@ -386,7 +386,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.15
Version: 0.4.16

## License

Expand Down
2 changes: 1 addition & 1 deletion native/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ If your Clojure application depends on Datalevin, and you want to compile your
application into GraalVM native image, you need to integrate the following steps in your
native image build:

1. Merge [Datalevin's reflect-config.json](https://github.com/juji-io/datalevin/releases/download/0.4.15/reflect-config.json) into yours.
1. Merge [Datalevin's reflect-config.json](https://github.com/juji-io/datalevin/releases/download/0.4.16/reflect-config.json) into yours.
2. Install liblmdb-dev, see step 3 above.
3. [Build libdtlv.a](https://github.com/juji-io/datalevin/blob/61f9e61b9a12a06beafdedeb810dd9aa9e43d722/native/script/compile#L19) and put it on your [CLibraryPath](https://github.com/juji-io/datalevin/blob/61f9e61b9a12a06beafdedeb810dd9aa9e43d722/native/script/compile#L35)

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.15")
(def version "0.4.16")

(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.15")
(def version "0.4.16")

(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 @@ -19,7 +19,7 @@
[java.lang RuntimeException])
(:gen-class))

(def version "0.4.15")
(def version "0.4.16")

(def version-str
(str
Expand Down

0 comments on commit 8ef4b34

Please sign in to comment.