Initial release

This commit is contained in:
George Narroway 2019-11-14 11:40:39 +08:00
parent 1816cab2ba
commit 0ea168c4b3
3 changed files with 12 additions and 2 deletions

8
CHANGELOG.md Normal file
View 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

View file

@ -1,5 +1,7 @@
# mongo-driver-3
[![Clojars Project](https://img.shields.io/clojars/v/mongo-driver-3.svg)](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/)
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"]
;; This wrapper library
[com.gnarroway/mongo-driver-3 "0.1.0-SNAPSHOT"]
[mongo-driver-3 "0.1.0"]
```
## License

View file

@ -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+."
:url "https://github.com/gnarroway/mongo-driver-3"
:license {:name "The MIT License"