Skip to content

Commit

Permalink
chore(release): Update version of crates
Browse files Browse the repository at this point in the history
- Update version of `abcrypt-capi` to 0.4.0.
- Update version of `abcrypt-py` to 0.2.0.
- Update version of `abcrypt-wasm` to 0.4.0.
  • Loading branch information
sorairolake committed Jan 9, 2025
1 parent 0392962 commit d59d4a9
Show file tree
Hide file tree
Showing 32 changed files with 34 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-capi.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.2"
current_version = "0.4.0"

[[tool.bumpversion.files]]
filename = "crates/capi/examples/meson.build"
Expand Down
2 changes: 1 addition & 1 deletion .bumpversion-python.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.1.4"
current_version = "0.2.0"

[[tool.bumpversion.files]]
filename = "crates/python/src/lib.rs"
2 changes: 1 addition & 1 deletion .bumpversion-wasm.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.2"
current_version = "0.4.0"

[[tool.bumpversion.files]]
filename = "crates/wasm/examples/version.ts"
Expand Down
6 changes: 3 additions & 3 deletions 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/capi/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-capi-v0.3.2\...HEAD[Unreleased]
== {compare-url}/abcrypt-capi-v0.3.2\...abcrypt-capi-v0.4.0[0.4.0] - 2025-01-09

=== Added

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

[package]
name = "abcrypt-capi"
version = "0.3.2"
version = "0.4.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/capi/examples/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ project('abcrypt_capi_examples',
default_options: ['warning_level=3', 'cpp_std=c++20'],
license: 'Apache-2.0 OR MIT',
meson_version: '>=0.53.0',
version: '0.3.2',
version: '0.4.0',
)

fs = import('fs')
Expand Down
2 changes: 1 addition & 1 deletion crates/capi/examples/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
#pragma once

namespace {
inline constexpr auto VERSION = "0.3.2";
inline constexpr auto VERSION = "0.4.0";
}
2 changes: 1 addition & 1 deletion crates/capi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

//! The `abcrypt-capi` crate is the C API for the `abcrypt` crate.
#![doc(html_root_url = "https://docs.rs/abcrypt-capi/0.3.2/")]
#![doc(html_root_url = "https://docs.rs/abcrypt-capi/0.4.0/")]
// Lint levels of rustc.
#![deny(missing_docs)]

Expand Down
2 changes: 1 addition & 1 deletion crates/python/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-py-v0.1.4\...HEAD[Unreleased]
== {compare-url}/abcrypt-py-v0.1.4\...abcrypt-py-v0.2.0[0.2.0] - 2025-01-09

=== Added

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

[package]
name = "abcrypt-py"
version = "0.1.4"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

//! The `abcrypt-py` crate is the Python bindings for the `abcrypt` crate.
#![doc(html_root_url = "https://docs.rs/abcrypt-py/0.1.4/")]
#![doc(html_root_url = "https://docs.rs/abcrypt-py/0.2.0/")]
// Lint levels of rustc.
#![forbid(unsafe_code)]
#![deny(missing_docs)]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm/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-wasm-v0.3.2\...HEAD[Unreleased]
== {compare-url}/abcrypt-wasm-v0.3.2\...abcrypt-wasm-v0.4.0[0.4.0] - 2025-01-09

=== Added

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

[package]
name = "abcrypt-wasm"
version = "0.3.2"
version = "0.4.0"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm/examples/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
//
// SPDX-License-Identifier: Apache-2.0 OR MIT

export const VERSION = "0.3.2";
export const VERSION = "0.4.0";
2 changes: 1 addition & 1 deletion crates/wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

//! The `abcrypt-wasm` crate is the Wasm bindings for the `abcrypt` crate.
#![doc(html_root_url = "https://docs.rs/abcrypt-wasm/0.3.2/")]
#![doc(html_root_url = "https://docs.rs/abcrypt-wasm/0.4.0/")]
// Lint levels of rustc.
#![forbid(unsafe_code)]
#![deny(missing_docs)]
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/ABCRYPT_HEADER_SIZE.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= ABCRYPT_HEADER_SIZE(3)
// Specify in UTC.
:docdate: 2024-12-07
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/ABCRYPT_TAG_SIZE.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= ABCRYPT_TAG_SIZE(3)
// Specify in UTC.
:docdate: 2024-04-16
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_decrypt.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_decrypt(3)
// Specify in UTC.
:docdate: 2024-12-10
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_encrypt.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_encrypt(3)
// Specify in UTC.
:docdate: 2024-12-10
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_encrypt_with_context.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_encrypt_with_context(3)
// Specify in UTC.
:docdate: 2024-12-10
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_encrypt_with_params.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_encrypt_with_params(3)
// Specify in UTC.
:docdate: 2024-12-10
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_error_code.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_error_code(3)
// Specify in UTC.
:docdate: 2024-12-07
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_error_message.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_error_message(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_error_message_out_len.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_error_message_out_len(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params_free.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params_free(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params_memory_cost.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params_memory_cost(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params_new.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params_new(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params_parallelism.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params_parallelism(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params_read.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params_read(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:icons: font
:mansource: abcrypt-capi {revnumber}
Expand Down
2 changes: 1 addition & 1 deletion docs/man/man3/abcrypt_params_time_cost.3.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
= abcrypt_params_time_cost(3)
// Specify in UTC.
:docdate: 2024-04-13
:revnumber: 0.3.2
:revnumber: 0.4.0
:doctype: manpage
:mansource: abcrypt-capi {revnumber}
:manmanual: Library Functions Manual
Expand Down

0 comments on commit d59d4a9

Please sign in to comment.