v0.3.1 release
This commit is contained in:
parent
2a128fc77d
commit
ea59047585
3 changed files with 8 additions and 4 deletions
|
|
@ -1,7 +1,7 @@
|
||||||
# Change Log
|
# Change Log
|
||||||
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
|
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [0.3.1]
|
||||||
### Added
|
### Added
|
||||||
- More documentation
|
- More documentation
|
||||||
|
|
||||||
|
|
@ -24,6 +24,7 @@ All notable changes to this project will be documented in this file. This change
|
||||||
### Added
|
### Added
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[Unreleased]: https://github.com/gnarroway/mongo-driver-3/compare/v0.3.0...HEAD
|
[Unreleased]: https://github.com/gnarroway/mongo-driver-3/compare/v0.3.1...HEAD
|
||||||
|
[0.3.1]: https://github.com/gnarroway/mongo-driver-3/compare/v0.3.0...v0.3.1
|
||||||
[0.3.0]: https://github.com/gnarroway/mongo-driver-3/compare/v0.2.0...v0.3.0
|
[0.3.0]: https://github.com/gnarroway/mongo-driver-3/compare/v0.2.0...v0.3.0
|
||||||
[0.2.0]: https://github.com/gnarroway/hato/compare/v0.1.0...v0.2.0
|
[0.2.0]: https://github.com/gnarroway/hato/compare/v0.1.0...v0.2.0
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
[](https://clojars.org/mongo-driver-3)
|
[](https://clojars.org/mongo-driver-3)
|
||||||
|
|
||||||
|
[](https://cljdoc.org/d/manifold/manifold/CURRENT)
|
||||||
|
|
||||||
|
|
||||||
A Mongo client for clojure, lightly wrapping 3.11+ versions of the [MongoDB Java Driver](https://mongodb.github.io/mongo-java-driver/)
|
A Mongo client for clojure, lightly wrapping 3.11+ versions of the [MongoDB Java Driver](https://mongodb.github.io/mongo-java-driver/)
|
||||||
|
|
||||||
In general, it will feel familiar to users of mongo clients like [monger](https://github.com/michaelklishin/monger).
|
In general, it will feel familiar to users of mongo clients like [monger](https://github.com/michaelklishin/monger).
|
||||||
|
|
@ -32,7 +35,7 @@ For Leinengen, add this to your project.clj:
|
||||||
[org.mongodb/mongodb-driver-sync "3.11.2"]
|
[org.mongodb/mongodb-driver-sync "3.11.2"]
|
||||||
|
|
||||||
;; This wrapper library
|
;; This wrapper library
|
||||||
[mongo-driver-3 "0.3.0"]
|
[mongo-driver-3 "0.3.1"]
|
||||||
```
|
```
|
||||||
|
|
||||||
## Getting started
|
## Getting started
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject mongo-driver-3 "0.3.1-SNAPSHOT"
|
(defproject mongo-driver-3 "0.3.1"
|
||||||
:description "A Clojure wrapper for the Java MongoDB driver 3.11+."
|
:description "A Clojure wrapper for the Java MongoDB driver 3.11+."
|
||||||
:url "https://github.com/gnarroway/mongo-driver-3"
|
:url "https://github.com/gnarroway/mongo-driver-3"
|
||||||
:license {:name "The MIT License"
|
:license {:name "The MIT License"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue