Skip to content

Commit

Permalink
Merge branch 'release/abcrypt-v0.2.7' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Nov 29, 2023
2 parents b25826b + 74fb879 commit acb8920
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-lib.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.6
current_version = 0.2.7

[bumpversion:file:crates/abcrypt/README.md]

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/abcrypt/CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ 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.2.6\...HEAD[Unreleased]
== {compare-url}/abcrypt-v0.2.6\...abcrypt-v0.2.7[0.2.7] - 2023-11-29

=== 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.2.6"
version = "0.2.7"
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 @@ -21,7 +21,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
abcrypt = "0.2.6"
abcrypt = "0.2.7"
```

### 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 @@ -87,7 +87,7 @@
//!
//! [abcrypt encrypted data format]: https://sorairolake.github.io/abcrypt/book/format.html
#![doc(html_root_url = "https://docs.rs/abcrypt/0.2.6/")]
#![doc(html_root_url = "https://docs.rs/abcrypt/0.2.7/")]
#![no_std]
#![cfg_attr(doc_cfg, 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 @@ exclude = ["/examples", "/tests"]
crate-type = ["staticlib", "cdylib"]

[dependencies]
abcrypt = { version = "0.2.6", path = "../abcrypt" }
abcrypt = { version = "0.2.7", 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.2.6", path = "../abcrypt", features = ["serde"] }
abcrypt = { version = "0.2.7", path = "../abcrypt", features = ["serde"] }
anyhow.workspace = true
byte-unit = "5.0.3"
clap = { workspace = true, features = ["wrap_help"] }
Expand Down
2 changes: 1 addition & 1 deletion docs/FORMAT.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= Abcrypt Encrypted Data Format
Shun Sakai <[email protected]>
// Specify in UTC.
v0.2.6, 2023-09-30
v0.2.7, 2023-09-30
:icons: font
:idprefix:
:idseparator: -
Expand Down
2 changes: 1 addition & 1 deletion docs/book/modules/lib/pages/usage.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[source,toml]
----
[dependencies]
abcrypt = "0.2.6"
abcrypt = "0.2.7"
----

== Crate features
Expand Down

0 comments on commit acb8920

Please sign in to comment.