Initial release
This commit is contained in:
parent
1816cab2ba
commit
0ea168c4b3
3 changed files with 12 additions and 2 deletions
8
CHANGELOG.md
Normal file
8
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
# 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/).
|
||||||
|
|
||||||
|
## 0.1.0 - 2019-11-14
|
||||||
|
### Added
|
||||||
|
- Initial release
|
||||||
|
|
||||||
|
[Unreleased]: https://github.com/gnarroway/mongo-driver-3/compare/v0.1.0...HEAD
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# mongo-driver-3
|
# mongo-driver-3
|
||||||
|
|
||||||
|
[](https://clojars.org/mongo-driver-3)
|
||||||
|
|
||||||
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).
|
||||||
|
|
@ -29,7 +31,7 @@ For Leinengen, add this to your project.clj:
|
||||||
[org.mongodb/mongodb-driver-sync "3.11.0"]
|
[org.mongodb/mongodb-driver-sync "3.11.0"]
|
||||||
|
|
||||||
;; This wrapper library
|
;; This wrapper library
|
||||||
[com.gnarroway/mongo-driver-3 "0.1.0-SNAPSHOT"]
|
[mongo-driver-3 "0.1.0"]
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
(defproject mongo-driver-3 "0.1.0-SNAPSHOT"
|
(defproject mongo-driver-3 "0.1.0"
|
||||||
: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