Skip to content

Commit

Permalink
Merge branch 'release/abcrypt-capi-v0.2.2' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Nov 29, 2023
2 parents 19c238d + 459db8d commit 5ead88a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-capi.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.2.1
current_version = 0.2.2

[bumpversion:file:crates/capi/examples/meson.build]

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/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.2.1\...HEAD[Unreleased]
== {compare-url}/abcrypt-capi-v0.2.1\...abcrypt-capi-v0.2.2[0.2.2] - 2023-11-29

=== Changed

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.2.1"
version = "0.2.2"
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++17'],
license: 'Apache-2.0 OR MIT',
meson_version: '>=0.53.0',
version: '0.2.1',
version: '0.2.2',
)

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

#include <iostream>

constexpr auto VERSION = "0.2.1";
constexpr auto VERSION = "0.2.2";

void print_version(void) {
std::cout << fmt::format("abcrypt-capi {}", VERSION) << std::endl;
Expand Down
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.2.1/")]
#![doc(html_root_url = "https://docs.rs/abcrypt-capi/0.2.2/")]
#![cfg_attr(doc_cfg, feature(doc_auto_cfg, doc_cfg))]
// Lint levels of rustc.
#![deny(missing_debug_implementations, missing_docs)]
Expand Down

0 comments on commit 5ead88a

Please sign in to comment.