diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..23f305d --- /dev/null +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 80e202a..51ace84 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/project.clj b/project.clj index 7e54d90..5a1629f 100644 --- a/project.clj +++ b/project.clj @@ -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"