version 0.7.0 release

This commit is contained in:
George Narroway 2022-10-04 19:10:24 +08:00
parent e84af3e0ce
commit 8a94879c94
2 changed files with 5 additions and 5 deletions

View file

@ -32,10 +32,10 @@ For Leinengen, add this to your project.clj:
```clojure
;; The underlying driver -- any newer version can also be used
[org.mongodb/mongodb-driver-sync "4.2.3"]
[org.mongodb/mongodb-driver-sync "4.7.1"]
;; This wrapper library
[mongo-driver-3 "0.6.0"]
[mongo-driver-3 "0.7.0"]
```
## Getting started

View file

@ -1,4 +1,4 @@
(defproject mongo-driver-3 "0.7.0-SNAPSHOT"
(defproject mongo-driver-3 "0.7.0"
:description "A Clojure wrapper for the Java MongoDB driver 3.11/4.0+."
:url "https://github.com/gnarroway/mongo-driver-3"
:license {:name "The MIT License"
@ -10,5 +10,5 @@
:sign-releases false}]]
:plugins [[lein-cljfmt "0.6.4"]]
:profiles {:dev {:dependencies [[org.clojure/clojure "1.10.1"]
[org.mongodb/mongodb-driver-sync "3.11.2"]]}})
:profiles {:dev {:dependencies [[org.clojure/clojure "1.11.1"]
[org.mongodb/mongodb-driver-sync "4.7.1"]]}})