diff --git a/CHANGELOG.md b/CHANGELOG.md index 11b1b40..596ddf2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/mibes/couch-rs/compare/0.10.1...develop) - ReleaseDate +## [Unreleased](https://github.com/mibes/couch-rs/compare/0.11.0...develop) - ReleaseDate + +## [0.11.0] - 2024-10-17 + +### Added + +- Include support for typed databases; contributed by horacimacias + +### Changed + +- Clippy suggestions fixed + ## [0.10.1] - 2024-05-06 diff --git a/couch_rs/Cargo.toml b/couch_rs/Cargo.toml index 8d44bb4..0ceda53 100644 --- a/couch_rs/Cargo.toml +++ b/couch_rs/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "couch_rs" -version = "0.10.1" +version = "0.11.0" authors = [ "Mathieu Amiot ", - "mibes ", + "Marcel Ibes ", ] license = "MIT/Apache-2.0" description = "CouchDB library for Rust" @@ -18,7 +18,7 @@ include = ["**/*.rs", "Cargo.toml"] [dependencies] serde = { version = "1", features = ["derive"] } serde_json = "1" -couch_rs_derive = { version = "0.10.1", optional = true, path = "../couch_rs_derive" } +couch_rs_derive = { version = "0.11.0", optional = true, path = "../couch_rs_derive" } url = "2" tokio = { version = "^1.32", features = ["rt-multi-thread"] } base64 = "0.22" diff --git a/couch_rs_derive/Cargo.toml b/couch_rs_derive/Cargo.toml index 5830ad1..41dbe0e 100644 --- a/couch_rs_derive/Cargo.toml +++ b/couch_rs_derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "couch_rs_derive" -version = "0.10.1" -authors = ["mibes "] +version = "0.11.0" +authors = ["Marcel Ibes "] license = "MIT/Apache-2.0" description = "CouchDB library for Rust" readme = "README.md"