Compare commits

...

8 commits

Author SHA1 Message Date
Michael Klishin
b379f1e80b Back to dev version 2014-12-07 16:55:13 +03:00
Michael Klishin
447a47270d 2.0.1 2014-12-07 16:54:12 +03:00
Michael Klishin
b52db4bc5d Update change log 2014-12-07 16:53:55 +03:00
Michael Klishin
9737d38f11 Bump Support to 1.1.0 2014-12-07 16:51:48 +03:00
Michael Klishin
ec5b46edd7 Bump Java driver to 2.12.4 2014-12-07 16:51:32 +03:00
Michael Klishin
e3db7a9212 Merge pull request #89 from stijnopheide/exclude-core-update
Exclude clojure.core/update from monger.collection.
2014-10-17 13:01:36 +04:00
Stijn Opheide
5dffc842a0 Exclude clojure.core/update from monger.collection.
clojure.core/update was introduced in clojure 1.7. To avoid clashing
with monger.collection/update it has to be excluded in the latter
namespace.
2014-10-17 10:34:22 +02:00
Michael Klishin
ef47226585 Back to dev version 2014-06-15 17:42:42 +04:00
3 changed files with 19 additions and 4 deletions

View file

@ -1,3 +1,18 @@
## Changes between 2.0.0 and 2.0.1
### Clojure 1.7 Compatibility
Monger now compiles with Clojure 1.7.
### ClojureWerkz Support Update
Support has been updated to `1.1.0`.
### MongoDB Java Driver Update
MongoDB Java driver dependency has been updated to `2.12.4`.
## Changes between 1.8.0 and 2.0.0
`2.0` is a major release that has **breaking public API changes**.

View file

@ -1,11 +1,11 @@
(defproject com.novemberain/monger "2.0.0"
(defproject com.novemberain/monger "2.0.2-SNAPSHOT"
: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.3.0"
:license {:name "Eclipse Public License"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.mongodb/mongo-java-driver "2.12.1"]
[clojurewerkz/support "0.20.0"]]
[org.mongodb/mongo-java-driver "2.12.4"]
[clojurewerkz/support "1.1.0"]]
:test-selectors {:default (fn [m]
(and (not (:performance m))
(not (:edge-features m))

View file

@ -23,7 +23,7 @@
* http://clojuremongodb.info/articles/updating.html
* http://clojuremongodb.info/articles/deleting.html
* http://clojuremongodb.info/articles/aggregation.html"
(:refer-clojure :exclude [find remove count drop distinct empty?])
(:refer-clojure :exclude [find remove count drop distinct empty? update])
(:import [com.mongodb Mongo DB DBCollection WriteResult DBObject WriteConcern
DBCursor MapReduceCommand MapReduceCommand$OutputType]
[java.util List Map]