diff --git a/.bumpversion-capi.cfg b/.bumpversion-capi.cfg index 40b65323..7a0f93de 100644 --- a/.bumpversion-capi.cfg +++ b/.bumpversion-capi.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 [bumpversion:file:crate/capi/examples/meson.build] diff --git a/Cargo.lock b/Cargo.lock index 0129fcc6..27cdda63 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -17,7 +17,7 @@ dependencies = [ [[package]] name = "abcrypt-capi" -version = "0.1.0" +version = "0.1.1" dependencies = [ "abcrypt", "cbindgen", diff --git a/crate/capi/CHANGELOG.adoc b/crate/capi/CHANGELOG.adoc index 696a4604..68b6db02 100644 --- a/crate/capi/CHANGELOG.adoc +++ b/crate/capi/CHANGELOG.adoc @@ -15,7 +15,7 @@ All notable changes to this project will be documented in this file. The format is based on {keepachangelog}, and this project adheres to {semver}. -== {compare-url}/abcrypt-capi-v0.1.0\...HEAD[Unreleased] +== {compare-url}/abcrypt-capi-v0.1.0\...abcrypt-capi-v0.1.1[0.1.1] - 2023-09-29 === Fixed diff --git a/crate/capi/Cargo.toml b/crate/capi/Cargo.toml index 6f1bef9b..0528995a 100644 --- a/crate/capi/Cargo.toml +++ b/crate/capi/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "abcrypt-capi" -version = "0.1.0" +version = "0.1.1" authors.workspace = true edition.workspace = true rust-version.workspace = true diff --git a/crate/capi/examples/meson.build b/crate/capi/examples/meson.build index a78a211f..62fb9fc4 100644 --- a/crate/capi/examples/meson.build +++ b/crate/capi/examples/meson.build @@ -7,7 +7,7 @@ project('abcrypt_capi_examples', default_options: ['warning_level=3', 'cpp_std=c++17'], license: 'Apache-2.0 OR MIT', meson_version: '>=0.53.0', - version: '0.1.0', + version: '0.1.1', ) fs = import('fs') diff --git a/crate/capi/examples/version.cpp b/crate/capi/examples/version.cpp index 2d0231b3..d249fa82 100644 --- a/crate/capi/examples/version.cpp +++ b/crate/capi/examples/version.cpp @@ -6,7 +6,7 @@ #include -constexpr auto VERSION = "0.1.0"; +constexpr auto VERSION = "0.1.1"; void print_version(void) { std::cout << fmt::format("abcrypt-capi {}", VERSION) << std::endl; diff --git a/crate/capi/src/lib.rs b/crate/capi/src/lib.rs index 5e6d9e6e..fbc67f67 100644 --- a/crate/capi/src/lib.rs +++ b/crate/capi/src/lib.rs @@ -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.1.0/")] +#![doc(html_root_url = "https://docs.rs/abcrypt-capi/0.1.1/")] #![cfg_attr(doc_cfg, feature(doc_auto_cfg, doc_cfg))] // Lint levels of rustc. #![deny(missing_debug_implementations, missing_docs)]