Skip to content

Commit

Permalink
Merge branch 'release/abcrypt-v0.3.5' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Jul 3, 2024
2 parents f27ede4 + ca3428a commit f412c5c
Show file tree
Hide file tree
Showing 13 changed files with 214 additions and 88 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-lib.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0 OR MIT

[tool.bumpversion]
current_version = "0.3.4"
current_version = "0.3.5"

[[tool.bumpversion.files]]
filename = "crates/abcrypt/README.md"
Expand Down
98 changes: 49 additions & 49 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions crates/abcrypt/CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ All notable changes to this project will be documented in this file.
The format is based on https://keepachangelog.com/[Keep a Changelog], and this
project adheres to https://semver.org/[Semantic Versioning].

== {compare-url}/abcrypt-v0.3.4\...abcrypt-v0.3.5[0.3.5] - 2024-07-03

=== Changed

* Rename `doc_cfg` to `docsrs` ({pull-request-url}/420[#420])

== {compare-url}/abcrypt-v0.3.3\...abcrypt-v0.3.4[0.3.4] - 2024-04-16

=== Changed
Expand Down
2 changes: 1 addition & 1 deletion crates/abcrypt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[package]
name = "abcrypt"
version = "0.3.4"
version = "0.3.5"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/abcrypt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
abcrypt = "0.3.4"
abcrypt = "0.3.5"
```

### Example
Expand Down
2 changes: 1 addition & 1 deletion crates/abcrypt/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
//!
//! [abcrypt encrypted data format]: https://sorairolake.github.io/abcrypt/book/format.html

#![doc(html_root_url = "https://docs.rs/abcrypt/0.3.4/")]
#![doc(html_root_url = "https://docs.rs/abcrypt/0.3.5/")]
#![no_std]
#![cfg_attr(docsrs, feature(doc_auto_cfg, doc_cfg))]
// Lint levels of rustc.
Expand Down
2 changes: 1 addition & 1 deletion crates/capi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include = ["/LICENSES", "/README.md", "/src"]
crate-type = ["staticlib", "cdylib"]

[dependencies]
abcrypt = { version = "0.3.4", path = "../abcrypt" }
abcrypt = { version = "0.3.5", path = "../abcrypt" }

[build-dependencies]
cbindgen = { version = "0.26.0", default-features = false }
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ name = "abcrypt"
path = "src/main.rs"

[dependencies]
abcrypt = { version = "0.3.4", path = "../abcrypt", features = ["serde"] }
abcrypt = { version = "0.3.5", path = "../abcrypt", features = ["serde"] }
anyhow.workspace = true
byte-unit = "5.1.4"
clap = { workspace = true, features = ["wrap_help"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/python/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ name = "abcrypt_py"
crate-type = ["cdylib", "rlib"]

[dependencies]
abcrypt = { version = "0.3.4", path = "../abcrypt" }
abcrypt = { version = "0.3.5", path = "../abcrypt" }
pyo3 = "0.22.0"
2 changes: 1 addition & 1 deletion crates/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ include = ["/LICENSES", "/README.md", "/src"]
crate-type = ["cdylib", "rlib"]

[dependencies]
abcrypt = { version = "0.3.4", path = "../abcrypt" }
abcrypt = { version = "0.3.5", path = "../abcrypt" }
getrandom = { version = "0.2.15", features = ["js"] }
wasm-bindgen = "0.2.92"

Expand Down
Loading

0 comments on commit f412c5c

Please sign in to comment.