diff --git a/ChangeLog.md b/ChangeLog.md index 87f2c6c..2fd80b0 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,8 +1,14 @@ -## Changes between 1.1.0 and 1.1.1 +## Changes between 1.1.1 and 1.1.2 No changes yet. +## Changes between 1.1.0 and 1.1.1 + +### monger.collection/insert-and-return no longer forcefully replaces existing document id + +`monger.collection/insert-and-return` now preserves existing document ids, just like `monger.collection/save-and-return` does. + ## Changes between 1.1.0-rc1 and 1.1.0 diff --git a/README.md b/README.md index 7f00551..26d1638 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ definition to your `pom.xml`: With Leiningen: - [com.novemberain/monger "1.1.0"] + [com.novemberain/monger "1.1.1"] With Maven: @@ -61,7 +61,7 @@ With Maven: com.novemberain monger - 1.1.0 + 1.1.1 diff --git a/project.clj b/project.clj index 195ff34..c355cd7 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.novemberain/monger "1.1.1-SNAPSHOT" +(defproject com.novemberain/monger "1.1.1" :description "Monger is a Clojure MongoDB client for a more civilized age: friendly, flexible and with batteries included" :url "http://clojuremongodb.info" :min-lein-version "2.0.0"