From 3d710696aa64ab1e280b1c88f98d0c29280d26aa Mon Sep 17 00:00:00 2001 From: Paula Gearon Date: Fri, 19 Feb 2021 19:35:04 -0500 Subject: [PATCH] Releasing 1.2.15 for Zuko bugfix --- CHANGELOG.md | 7 ++++++- README.md | 4 ++-- project.clj | 4 ++-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6317c6..486d3d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ ## [Unreleased] Nothing +## [1.2.15] - 2021-02-19 +### Fixed +- Bugfix for multigraph entities + ## [1.2.14] - 2021-02-18 ### Changed - Removed Clojurescript from the dependency tree of the generated artifacts. @@ -120,7 +124,8 @@ Nothing ### Added - Introduced Update Annotations -[Unreleased]: https://github.com/threatgrid/asami/compare/1.2.14...HEAD +[Unreleased]: https://github.com/threatgrid/asami/compare/1.2.15...HEAD +[1.2.15]: https://github.com/threatgrid/asami/compare/1.2.14...1.2.15 [1.2.14]: https://github.com/threatgrid/asami/compare/1.2.13...1.2.14 [1.2.13]: https://github.com/threatgrid/asami/compare/1.2.12...1.2.13 [1.2.12]: https://github.com/threatgrid/asami/compare/1.2.11...1.2.12 diff --git a/README.md b/README.md index 80f84ab..36f398f 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,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 "1.2.14"} + org.clojars.quoll/asami {:mvn/version "1.2.15"} } } ``` @@ -37,7 +37,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 "1.2.14"] +[org.clojars.quoll/asami "1.2.15"] ``` ### Running diff --git a/project.clj b/project.clj index 9ab4dd2..6cc379f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject org.clojars.quoll/asami "1.2.14" +(defproject org.clojars.quoll/asami "1.2.15" :description "An in memory graph store for Clojure and ClojureScript" :url "http://github.com/threatgrid/asami" :license {:name "Eclipse Public License" @@ -6,7 +6,7 @@ :dependencies [[org.clojure/clojure "1.10.2"] [prismatic/schema "1.1.12"] [org.clojure/core.cache "0.8.2"] - [org.clojars.quoll/zuko "0.4.1"]] + [org.clojars.quoll/zuko "0.4.2"]] :plugins [[lein-cljsbuild "1.1.8"]] :profiles { :dev {