Compare commits
8 commits
master
...
2.0.x-stab
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b379f1e80b | ||
|
|
447a47270d | ||
|
|
b52db4bc5d | ||
|
|
9737d38f11 | ||
|
|
ec5b46edd7 | ||
|
|
e3db7a9212 | ||
|
|
5dffc842a0 | ||
|
|
ef47226585 |
3 changed files with 19 additions and 4 deletions
15
ChangeLog.md
15
ChangeLog.md
|
|
@ -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**.
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Reference in a new issue