From 7bf388b266d48df2cd7421a8bbe59244be9f68e7 Mon Sep 17 00:00:00 2001 From: Jack Rusher Date: Thu, 23 Aug 2018 11:51:59 +0200 Subject: [PATCH] upgrade mapdb and bump version --- CHANGELOG.md | 6 +++++- README.md | 2 +- project.clj | 6 +++--- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7b02bb..14bdcba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,13 @@ All notable changes to this project will be documented in this file. This change ## [Unreleased] ### Changed +## [0.1.5] - 2018-08-23 +### Changed +- MapDB version bumped to `3.0.7`. + ## [0.1.5] - 2018-03-01 ### Changed -- MapDB version bumped to 3.0.6. +- MapDB version bumped to `3.0.6`. ### Fixed - No longer creates bogus subdirectories when given a non-existent database filename while in read-only mode. diff --git a/README.md b/README.md index c2aa8fd..ec5112c 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ deployed in production, and quite useful. ## Usage ``` clojure -[spicerack "0.1.5"] +[spicerack "0.1.6"] ``` There are only a handful of functions in this wrapper. It provides diff --git a/project.clj b/project.clj index ce1981a..bde8102 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject spicerack "0.1.5" +(defproject spicerack "0.1.6" :description "A Clojure wrapper for MapDB, which is a fast disk-persistent data-structure library." :url "https://github.com/jackrusher/spicerack" :license {:name "Eclipse Public License" @@ -8,8 +8,8 @@ [org.eclipse.collections/eclipse-collections "7.1.1"] [org.eclipse.collections/eclipse-collections-forkjoin "7.1.1"] [com.google.guava/guava "19.0"] - [org.mapdb/mapdb "3.0.6" - :exclusions [org.eclipse.collections/eclipse-collections-api + [org.mapdb/mapdb "3.0.7" + :exclusions [org.eclipse.collections/eclipse-collections-api org.eclipse.collections/eclipse-collections org.eclipse.collections/eclipse-collections-forkjoin com.google.guava/guava]]]