Skip to content

Commit

Permalink
Release 2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Paula Gearon committed Aug 18, 2021
1 parent 3ccaa09 commit e2b48d9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## [2.1.2] - 2021-08-18
### Added
- Queries now test that projected variables in the `:find` clause appear in the `:where` clause.
- In memory graphs now how transaction IDs (not yet exposed in public APIs).

### Fixed
- User plans now using the correct return type, so complex queries don't cause errors while testing.
- Multiple bindings in the `:in` clause will now combine correctly during testing.

## [2.1.1] - 2021-06-28
### Added
- Added `asami.core/export-str`. This is a shortcut to convert a data export to a string, suitable for `clojure.core/spit`, since the default will write this as a LazySeq label.
Expand Down Expand Up @@ -260,7 +269,8 @@
### Added
- Introduced Update Annotations

[Unreleased]: https://github.com/threatgrid/asami/compare/2.1.1...HEAD
[Unreleased]: https://github.com/threatgrid/asami/compare/2.1.2...HEAD
[2.1.2]: https://github.com/threatgrid/asami/compare/2.1.1...2.1.2
[2.1.1]: https://github.com/threatgrid/asami/compare/2.1.0...2.1.1
[2.1.0]: https://github.com/threatgrid/asami/compare/2.0.6...2.1.0
[2.0.6]: https://github.com/threatgrid/asami/compare/2.0.5...2.0.6
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Asami can be made available to clojure by adding the following to a `deps.edn` f
```clojure
{
:deps {
org.clojars.quoll/asami {:mvn/version "2.1.1"}
org.clojars.quoll/asami {:mvn/version "2.1.2"}
}
}
```
Expand All @@ -41,7 +41,7 @@ This makes Asami available to a repl that is launched with the `clj` or `clojure

Alternatively, Asami can be added for the Leiningen build tool by adding this to the `:dependencies` section of the `project.clj` file:
```clojure
[org.clojars.quoll/asami "2.1.1"]
[org.clojars.quoll/asami "2.1.2"]
```

### Important Note for databases before 2.1.0
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org.clojars.quoll/asami "2.1.1"
(defproject org.clojars.quoll/asami "2.1.2"
:description "An in memory graph store for Clojure and ClojureScript"
:url "http://github.com/threatgrid/asami"
:license {:name "Eclipse Public License"
Expand Down

0 comments on commit e2b48d9

Please sign in to comment.