Skip to content

Commit d3b6752

Browse files
author
Paula Gearon
committed
Releasing 2.2.1
1 parent 1ea7d48 commit d3b6752

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## [2.2.1] - 2021-10-16
4+
### Fixed
5+
- Accepting java.time.Instant objects on the `since` and `as-of` database functions.
6+
37
## [2.2.0] - 2021-10-10
48
### Added
59
- `transact-async` has been added. On the JVM this will return a future that has not yet been completed. There is currently no difference between `transact` and `transact-async` for ClojureScript.
@@ -281,7 +285,8 @@
281285
### Added
282286
- Introduced Update Annotations
283287

284-
[Unreleased]: https://github.com/threatgrid/asami/compare/2.2.0...HEAD
288+
[Unreleased]: https://github.com/threatgrid/asami/compare/2.2.1...HEAD
289+
[2.2.1]: https://github.com/threatgrid/asami/compare/2.2.0...2.2.1
285290
[2.2.0]: https://github.com/threatgrid/asami/compare/2.1.3...2.2.0
286291
[2.1.3]: https://github.com/threatgrid/asami/compare/2.1.2...2.1.3
287292
[2.1.2]: https://github.com/threatgrid/asami/compare/2.1.1...2.1.2

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Asami can be made available to clojure by adding the following to a `deps.edn` f
3232
```clojure
3333
{
3434
:deps {
35-
org.clojars.quoll/asami {:mvn/version "2.2.0"}
35+
org.clojars.quoll/asami {:mvn/version "2.2.1"}
3636
}
3737
}
3838
```
@@ -41,7 +41,7 @@ This makes Asami available to a repl that is launched with the `clj` or `clojure
4141

4242
Alternatively, Asami can be added for the Leiningen build tool by adding this to the `:dependencies` section of the `project.clj` file:
4343
```clojure
44-
[org.clojars.quoll/asami "2.2.0"]
44+
[org.clojars.quoll/asami "2.2.1"]
4545
```
4646

4747
### Important Note for databases before 2.1.0

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject org.clojars.quoll/asami "2.2.0-SNAPSHOT"
1+
(defproject org.clojars.quoll/asami "2.2.1"
22
:description "An in memory graph store for Clojure and ClojureScript"
33
:url "http://github.com/threatgrid/asami"
44
:license {:name "Eclipse Public License"

0 commit comments

Comments
 (0)