Skip to content

Commit d9e5cb0

Browse files
committed
chore(release): bump version to 0.11.0-alpha.7
1 parent ef1695d commit d9e5cb0

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
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.11.0-alpha.6)
4+
set(CMAKE_PROJECT_VERSION 0.11.0-alpha.7)
55

66
find_package(Git)
77
if(Git_FOUND)

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.11.0-alpha.6"
6+
version = "0.11.0-alpha.7"
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.11.0-alpha.6"
5+
version = "0.11.0-alpha.7"
66
rust-version = "1.88"
77
edition = "2024"
88

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

1212
[dependencies]
13-
chewing = { version = "0.11.0-alpha.6", path = ".." }
13+
chewing = { version = "0.11.0-alpha.7", path = ".." }
1414
tracing = { workspace = true }
1515
tracing-subscriber = { 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.11.0-alpha.6".as_ptr()
9+
c"0.11.0-alpha.7".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.6".as_ptr()
29+
c"alpha.7".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.11.0-alpha.6"
3+
.TH chewing-cli 1 "chewing-cli 0.11.0-alpha.7"
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.11.0\-alpha.6
28+
v0.11.0\-alpha.7

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.11.0-alpha.6", path = ".." }
10-
chewing_capi = { version = "0.11.0-alpha.6", path = "../capi" }
9+
chewing = { version = "0.11.0-alpha.7", path = ".." }
10+
chewing_capi = { version = "0.11.0-alpha.7", path = "../capi" }
1111
tracing = { workspace = true }
1212
tracing-subscriber = { 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.11.0-alpha.6", path = "../.." }
10+
chewing = { version = "0.11.0-alpha.7", 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.11.0-alpha.6"
5+
version = "0.11.0-alpha.7"
66
edition = "2024"
77

88
[dependencies]
99
anyhow = "1.0.0"
10-
chewing = { version = "0.11.0-alpha.6", path = ".." }
10+
chewing = { version = "0.11.0-alpha.7", path = ".." }
1111
clap = { version = "4.4.18", features = ["derive"] }
1212

1313
[dependencies.clap_mangen]

0 commit comments

Comments
 (0)