Skip to content

Commit 118deb8

Browse files
committed
chore(release): bump version to 0.12.0-alpha.2
1 parent 6164b2b commit 118deb8

File tree

9 files changed

+16
-16
lines changed

9 files changed

+16
-16
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.24.0...3.31.6)
22
project(libchewing LANGUAGES C)
33

4-
set(CMAKE_PROJECT_VERSION 0.12.0-alpha.1)
4+
set(CMAKE_PROJECT_VERSION 0.12.0-alpha.2)
55
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
66

77
find_package(Git)

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "chewing"
33
description = "The Chewing (酷音) intelligent Zhuyin input method."
44
documentation = "https://docs.rs/chewing"
55
license = "LGPL-2.1-or-later"
6-
version = "0.12.0-alpha.1"
6+
version = "0.12.0-alpha.2"
77
rust-version = "1.88.0"
88
edition = "2024"
99

capi/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
name = "chewing_capi"
33
description = "The Chewing (酷音) intelligent Zhuyin input method."
44
license = "LGPL-2.1-or-later"
5-
version = "0.12.0-alpha.1"
5+
version = "0.12.0-alpha.2"
66
rust-version = "1.88"
77
edition = "2024"
88

99
[lib]
1010
crate-type = ["rlib", "staticlib"]
1111

1212
[dependencies]
13-
chewing = { version = "0.12.0-alpha.1", path = ".." }
13+
chewing = { version = "0.12.0-alpha.2", path = ".." }
1414
env_logger = { workspace = true }
1515
log = { workspace = true }
1616

capi/src/version.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ pub const CHEWING_VERSION_PATCH: c_int = 0;
66

77
#[unsafe(no_mangle)]
88
pub extern "C" fn chewing_version() -> *const c_char {
9-
c"0.12.0-alpha.1".as_ptr()
9+
c"0.12.0-alpha.2".as_ptr()
1010
}
1111

1212
#[unsafe(no_mangle)]
@@ -26,5 +26,5 @@ pub extern "C" fn chewing_version_patch() -> c_int {
2626

2727
#[unsafe(no_mangle)]
2828
pub extern "C" fn chewing_version_extra() -> *const c_char {
29-
c"alpha.1".as_ptr()
29+
c"alpha.2".as_ptr()
3030
}

doc/chewing-cli.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.ie \n(.g .ds Aq \(aq
22
.el .ds Aq '
3-
.TH chewing-cli 1 "chewing-cli 0.12.0-alpha.1"
3+
.TH chewing-cli 1 "chewing-cli 0.12.0-alpha.2"
44
.SH NAME
55
chewing\-cli \- Tools of the Chewing (酷音) intelligent Zhuyin input method.
66
.SH SYNOPSIS
@@ -25,4 +25,4 @@ Display information about the dictionary
2525
chewing\-cli\-dump(1)
2626
Dump the dictionary entries into tsi.src formatted stream
2727
.SH VERSION
28-
v0.12.0-alpha.1
28+
v0.12.0-alpha.2

fuzzer/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
chewing = { version = "0.12.0-alpha.1", path = ".." }
10-
chewing_capi = { version = "0.12.0-alpha.1", path = "../capi" }
9+
chewing = { version = "0.12.0-alpha.2", path = ".." }
10+
chewing_capi = { version = "0.12.0-alpha.2", path = "../capi" }
1111
env_logger = { workspace = true }
1212
log = { workspace = true }

tests/testhelper/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
crate-type = ["cdylib"]
88

99
[dependencies]
10-
chewing = { version = "0.12.0-alpha.1", path = "../.." }
10+
chewing = { version = "0.12.0-alpha.2", path = "../.." }
1111

1212
[features]
1313
sqlite = ["chewing/sqlite"]

tools/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
name = "chewing-cli"
33
description = "Tools of the Chewing (酷音) intelligent Zhuyin input method."
44
license = "LGPL-2.1-or-later"
5-
version = "0.12.0-alpha.1"
5+
version = "0.12.0-alpha.2"
66
edition = "2024"
77

88
[dependencies]
99
anyhow = "1.0.0"
10-
chewing = { version = "0.12.0-alpha.1", path = ".." }
10+
chewing = { version = "0.12.0-alpha.2", path = ".." }
1111
clap = { version = "4.4.18", features = ["derive"] }
1212
env_logger.workspace = true
1313

0 commit comments

Comments
 (0)