Skip to content

Commit

Permalink
Prepare for 0.9.4 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mibes committed Nov 15, 2023
1 parent ab2a765 commit 846b97a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ 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.9.3...develop) - ReleaseDate
## [Unreleased](https://github.com/mibes/couch-rs/compare/0.9.4...develop) - ReleaseDate

## [0.9.4] - 2023-11-15

### Added
- Include a status() on DesignCreated to make it easier to switch from ensure_index() to insert_index()

## [0.9.3] - 2023-09-21

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![docs.rs](https://docs.rs/couch_rs/badge.svg)](https://docs.rs/couch_rs)
![Build](https://img.shields.io/github/workflow/status/mibes/couch-rs/Rust)
![License](https://img.shields.io/crates/l/couch_rs.svg)
[![dependency status](https://deps.rs/crate/couch_rs/0.9.3/status.svg)](https://deps.rs/crate/couch_rs)
[![dependency status](https://deps.rs/crate/couch_rs/0.9.4/status.svg)](https://deps.rs/crate/couch_rs)
![Downloads](https://img.shields.io/crates/d/couch_rs.svg)

## Documentation
Expand Down
4 changes: 2 additions & 2 deletions couch_rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "couch_rs"
version = "0.9.3"
version = "0.9.4"
authors = [
"Mathieu Amiot <[email protected]>",
"mibes <[email protected]>",
Expand All @@ -18,7 +18,7 @@ include = ["**/*.rs", "Cargo.toml"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
couch_rs_derive = { version = "0.9.3", optional = true, path = "../couch_rs_derive" }
couch_rs_derive = { version = "0.9.4", optional = true, path = "../couch_rs_derive" }
url = "2"
tokio = { version = "^1.32", features = ["rt-multi-thread"] }
base64 = "0.21"
Expand Down
2 changes: 1 addition & 1 deletion couch_rs_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "couch_rs_derive"
version = "0.9.3"
version = "0.9.4"
authors = ["mibes <[email protected]>"]
license = "MIT/Apache-2.0"
description = "CouchDB library for Rust"
Expand Down

0 comments on commit 846b97a

Please sign in to comment.