Skip to content

Commit

Permalink
Fixes #99 by updating Java driver and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Oct 31, 2012
1 parent d2bf72a commit 47804a1
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions project.clj
@@ -1,5 +1,5 @@
(defproject congomongo
"0.3.1"
"0.3.2"
:description "clojure-friendly api for MongoDB"
:url "https://github.com/aboekhoff/congomongo"
:mailing-list {:name "congomongo mailing list"
Expand All @@ -12,7 +12,7 @@
:plugins [[lein-swank "1.4.4"]]
:dependencies [[org.clojure/core.incubator "0.1.2"]
[org.clojure/data.json "0.2.0"]
[org.mongodb/mongo-java-driver "2.9.2"]
[org.mongodb/mongo-java-driver "2.9.3"]
[org.clojure/clojure "1.4.0"]]
;; if a :dev profile is added, remember to update :aliases below to
;; use it in each with-profile group!
Expand Down
16 changes: 13 additions & 3 deletions readme.markdown
Expand Up @@ -9,6 +9,10 @@ For Clojure 1.2.1 and earlier, use CongoMongo 0.2.2 or earlier. CongoMongo 0.2.2

News
--------------
Version 0.3.2 - October 30th, 2012

* Update Java driver to 2.9.3 for recommended update (#99)

Version 0.3.1 - October 23rd, 2012

* Update Java driver to 2.9.2 for CRITICAL update (#98)
Expand All @@ -19,7 +23,11 @@ Version 0.3.0 - October 23rd, 2012
* Update clojure.data.json to 0.2.0 (#97)
* Update clojure.core.incubator to 0.1.2

Version 0.2.2 - October 23rd, 2012 - last release to support Clojure 1.2.x!
Version 0.2.3 - October 10th, 2012 - last release to support Clojure 1.2.x!

* Update Java driver to 2.9.3 for recommended update (#99)

Version 0.2.2 - October 23rd, 2012

* Update Java driver to 2.9.2 for CRITICAL update (#98)

Expand Down Expand Up @@ -258,16 +266,18 @@ Install
-------

Leiningen is the recommended way to use congomongo.
Just add
If you are using Clojure 1.3.0 or later, just add

[congomongo "0.2.0"]
[congomongo "0.3.2"]

to your project.clj and do

$lein deps

to get congomongo and all of its dependencies.

If you are still on Clojure 1.2.x, use congomongo version 0.2.3 instead.

### Feedback

CongoMongo is a work in progress. If you've used, improved,
Expand Down

0 comments on commit 47804a1

Please sign in to comment.