Skip to content

Commit

Permalink
Version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
huahaiy committed Aug 24, 2020
1 parent 23855fc commit 2131b5f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# 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.3.0
### Changed
- [**Breaking**] Change argument order of `core/create-conn`, `db/empty-db`
etc., and put `dir` in front, since it is more likely to be specified than
`schema` in real use, so users don't have to put `nil` for `schema`.

## 0.2.19
### Fixed
- correct `core/update-schema`
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,11 @@ In short, Datalevin is quite capable for small or medium projects right now.

These are the short term goals that we will try to reach quickly:

* 0.3.0 Distributed mode with raft based replication
* 0.4.0 New query engine with an optimizer, will be based on [Paula Gearon](https://dev.to/quoll)'s [Asami](https://github.com/threatgrid/asami)
* 0.5.0 Schema migration
* 0.6.0 Query parity with Datascript: composite tuples and persisted transaction functions
* 0.7.0 Materialized views and incremental maintenance
* 0.4.0 Distributed mode with raft based replication
* 0.5.0 New query engine with an optimizer, will be based on [Paula Gearon](https://dev.to/quoll)'s [Asami](https://github.com/threatgrid/asami)
* 0.6.0 Schema migration
* 0.7.0 Query parity with Datascript: composite tuples and persisted transaction functions
* 0.8.0 Materialized views and incremental maintenance

We welcome any suggestions on what to do next. Please file issues.

Expand Down Expand Up @@ -212,7 +212,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.2.19
Version: 0.3.0

## License

Expand Down
12 changes: 6 additions & 6 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(def version "0.2.19")
(def version "0.3.0")

(defproject datalevin version
:description "A simple, fast and durable Datalog database"
Expand All @@ -11,11 +11,11 @@
;; [com.alipay.sofa/jraft-core "1.3.4"]
[org.lmdbjava/lmdbjava "0.8.1"
;; uncomment when run lein codox
;; :exclusions
;; [org.ow2.asm/asm-analysis
;; org.ow2.asm/asm-commons
;; org.ow2.asm/asm-tree
;; org.ow2.asm/asm-util]
:exclusions
[org.ow2.asm/asm-analysis
org.ow2.asm/asm-commons
org.ow2.asm/asm-tree
org.ow2.asm/asm-util]
]]
:profiles {:dev {:dependencies [[org.clojure/test.check "1.1.0"]
[criterium "0.4.6"]
Expand Down

0 comments on commit 2131b5f

Please sign in to comment.