From c39dd281c46d36cda9bfa074d9567008c2c55238 Mon Sep 17 00:00:00 2001 From: George Narroway Date: Wed, 7 Feb 2024 11:09:13 +0800 Subject: [PATCH] version 0.8.0 release --- CHANGELOG.md | 11 ++++++++++- README.md | 2 +- project.clj | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b20ce05..d16d59a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,18 @@ # 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.8.0 - 2024-02-07 +### Added +- Support for passing `:realise-fn` to avoid lazy response (thanks @jimpil) + +### Changed +- Remove reflective calls + ## 0.7.0 - 2022-10-04 ### Added -- Support reading dates as instances (thanks @henryw374) +- Support reading dates as instanceres (thanks @henryw374) - Support data literal for mongo id (thanks @henryw374) - Support for implicit transactions (thanks @AdamClements) - Support for aggregation pipeline in find-one-and-update (requires 4.2+, thanks @jacobemcken) diff --git a/README.md b/README.md index 58da60a..8dab4c0 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ For Leinengen, add this to your project.clj: [org.mongodb/mongodb-driver-sync "4.11.1"] ;; This wrapper library -[mongo-driver-3 "0.7.0"] +[mongo-driver-3 "0.8.0"] ``` ## Getting started diff --git a/project.clj b/project.clj index 57d42a4..4634dd5 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject mongo-driver-3 "0.8.0-SNAPSHOT" +(defproject mongo-driver-3 "0.8.0" :description "A Clojure wrapper for the Java MongoDB driver 3.11/4.0+." :url "https://github.com/gnarroway/mongo-driver-3" :license {:name "The MIT License"