Skip to content

Commit

Permalink
Update version of abcrypt-capi to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sorairolake committed Sep 29, 2023
1 parent 2c2ab9d commit bf54e10
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.1.0
current_version = 0.1.1

[bumpversion:file:crate/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 crate/capi/CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion crate/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.1.0"
version = "0.1.1"
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crate/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.1.0',
version: '0.1.1',
)

fs = import('fs')
Expand Down
2 changes: 1 addition & 1 deletion crate/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.1.0";
constexpr auto VERSION = "0.1.1";

void print_version(void) {
std::cout << fmt::format("abcrypt-capi {}", VERSION) << std::endl;
Expand Down
2 changes: 1 addition & 1 deletion crate/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.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)]
Expand Down

0 comments on commit bf54e10

Please sign in to comment.