version 0.8.0 release
This commit is contained in:
parent
0acd78c963
commit
c39dd281c4
3 changed files with 12 additions and 3 deletions
11
CHANGELOG.md
11
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)
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue