From 4942c3426cb68b531010facd8a7fc3057306255d Mon Sep 17 00:00:00 2001 From: George Narroway Date: Fri, 22 Nov 2019 17:58:29 +0800 Subject: [PATCH] 0.5.0 release --- CHANGELOG.md | 20 +++++++------------- README.md | 2 +- project.clj | 4 ++-- 3 files changed, 10 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb8690f..c08cf91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,21 +1,21 @@ # 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/). -## [Unreleased] +## 0.5.0 - 2019-11-22 ### Added -- with-transaction +- Support for transactions -## [0.4.0] +## 0.4.0 - 2019-11-19 ### Added - list collections - start session - remove reflection warnings -## [0.3.1] - 2019-11-17 +## 0.3.1 - 2019-11-17 ### Added - More documentation -## [0.3.0] - 2019-11-15 +## 0.3.0 - 2019-11-15 ### Added - Added aggregate function - `skip` option to `find` @@ -26,16 +26,10 @@ All notable changes to this project will be documented in this file. This change - Added ? suffix to boolean params - Renamed `find-one-as-map` to `find-one` -## [0.2.0] - 2019-11-14 +## 0.2.0 - 2019-11-14 ### Added - expose operators ## 0.1.0 - 2019-11-14 ### Added -- Initial release - -[Unreleased]: https://github.com/gnarroway/mongo-driver-3/compare/v0.4.0...HEAD -[0.4.0]: https://github.com/gnarroway/mongo-driver-3/compare/v0.3.1...v0.4.0 -[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.2.0]: https://github.com/gnarroway/hato/compare/v0.1.0...v0.2.0 +- Initial release \ No newline at end of file diff --git a/README.md b/README.md index 4387d7e..1daa4b4 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ For Leinengen, add this to your project.clj: [org.mongodb/mongodb-driver-sync "3.11.2"] ;; This wrapper library -[mongo-driver-3 "0.4.0"] +[mongo-driver-3 "0.5.0"] ``` ## Getting started diff --git a/project.clj b/project.clj index f231226..b6cd4e9 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject mongo-driver-3 "0.5.0-SNAPSHOT" +(defproject mongo-driver-3 "0.5.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" @@ -11,4 +11,4 @@ :plugins [[lein-cljfmt "0.6.4"]] :profiles {:dev {:dependencies [[org.clojure/clojure "1.10.1"] - [org.mongodb/mongodb-driver-sync "3.11.0"]]}}) + [org.mongodb/mongodb-driver-sync "3.11.2"]]}})