Skip to content

Commit

Permalink
chore: prepare for 0.11.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mibes committed Oct 17, 2024
1 parent 6a772db commit 75efd73
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
6 changes: 3 additions & 3 deletions couch_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "couch_rs"
version = "0.10.1"
version = "0.11.0"
authors = [
"Mathieu Amiot <[email protected]>",
"mibes <[email protected]>",
"Marcel Ibes <[email protected]>",
]
license = "MIT/Apache-2.0"
description = "CouchDB library for Rust"
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions couch_rs_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "couch_rs_derive"
version = "0.10.1"
authors = ["mibes <[email protected]>"]
version = "0.11.0"
authors = ["Marcel Ibes <[email protected]>"]
license = "MIT/Apache-2.0"
description = "CouchDB library for Rust"
readme = "README.md"
Expand Down

0 comments on commit 75efd73

Please sign in to comment.