From 487d74e3a21ad5ced0c734c21750d15f3bb0c9c6 Mon Sep 17 00:00:00 2001 From: Kan-Ru Chen Date: Sun, 28 Jul 2024 07:51:27 +0900 Subject: [PATCH] chore: bump version to 0.9.0-rc.3 --- CMakeLists.txt | 2 +- Cargo.lock | 6 +++--- Cargo.toml | 2 +- capi/Cargo.toml | 4 ++-- capi/src/version.rs | 4 ++-- doc/chewing-cli.1 | 4 ++-- fuzzer/Cargo.toml | 4 ++-- tests/testhelper/Cargo.toml | 2 +- tools/Cargo.toml | 4 ++-- 9 files changed, 16 insertions(+), 16 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 82e134ac..ed5f7cdd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.24.0) project(libchewing LANGUAGES C) -set(CMAKE_PROJECT_VERSION 0.9.0-rc.2) +set(CMAKE_PROJECT_VERSION 0.9.0-rc.3) find_package(Git) if(Git_FOUND) diff --git a/Cargo.lock b/Cargo.lock index a9b2f2e2..15a0567f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -89,7 +89,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chewing" -version = "0.9.0-rc.2" +version = "0.9.0-rc.3" dependencies = [ "der", "directories", @@ -100,7 +100,7 @@ dependencies = [ [[package]] name = "chewing-cli" -version = "0.9.0-rc.2" +version = "0.9.0-rc.3" dependencies = [ "anyhow", "chewing", @@ -110,7 +110,7 @@ dependencies = [ [[package]] name = "chewing_capi" -version = "0.9.0-rc.2" +version = "0.9.0-rc.3" dependencies = [ "chewing", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 718df066..fd945aa0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "chewing" description = "The Chewing (酷音) intelligent Zhuyin input method." documentation = "https://docs.rs/chewing" license = "LGPL-2.1-or-later" -version = "0.9.0-rc.2" +version = "0.9.0-rc.3" rust-version = "1.77.0" edition = "2021" diff --git a/capi/Cargo.toml b/capi/Cargo.toml index 87ae9843..2c1ba3fb 100644 --- a/capi/Cargo.toml +++ b/capi/Cargo.toml @@ -2,7 +2,7 @@ name = "chewing_capi" description = "The Chewing (酷音) intelligent Zhuyin input method." license = "LGPL-2.1-or-later" -version = "0.9.0-rc.2" +version = "0.9.0-rc.3" rust-version = "1.77" edition = "2021" @@ -10,7 +10,7 @@ edition = "2021" crate-type = ["rlib", "staticlib"] [dependencies] -chewing = { version = "0.9.0-rc.2", path = ".." } +chewing = { version = "0.9.0-rc.3", path = ".." } env_logger = { version = ">= 0.10.2", default-features = false } log = { workspace = true } diff --git a/capi/src/version.rs b/capi/src/version.rs index e9c94e28..67c89a0a 100644 --- a/capi/src/version.rs +++ b/capi/src/version.rs @@ -6,7 +6,7 @@ pub const CHEWING_VERSION_PATCH: c_int = 0; #[no_mangle] pub extern "C" fn chewing_version() -> *const c_char { - c"0.9.0-rc.2".as_ptr() + c"0.9.0-rc.3".as_ptr() } #[no_mangle] @@ -26,5 +26,5 @@ pub extern "C" fn chewing_version_patch() -> c_int { #[no_mangle] pub extern "C" fn chewing_version_extra() -> *const c_char { - c"-rc.2".as_ptr() + c"-rc.3".as_ptr() } diff --git a/doc/chewing-cli.1 b/doc/chewing-cli.1 index dcc6ac50..af26016e 100644 --- a/doc/chewing-cli.1 +++ b/doc/chewing-cli.1 @@ -1,6 +1,6 @@ .ie \n(.g .ds Aq \(aq .el .ds Aq ' -.TH chewing-cli 1 "chewing-cli 0.9.0-rc.2" +.TH chewing-cli 1 "chewing-cli 0.9.0-rc.3" .SH NAME chewing\-cli \- Tools of the Chewing (酷音) intelligent Zhuyin input method. .SH SYNOPSIS @@ -25,4 +25,4 @@ Display information about the dictionary chewing\-cli\-dump(1) Dump the dictionary entries into tsi.src formatted stream .SH VERSION -v0.9.0-rc.2 \ No newline at end of file +v0.9.0-rc.3 \ No newline at end of file diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index 6b289df8..ac4a364a 100644 --- a/fuzzer/Cargo.toml +++ b/fuzzer/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -chewing = { version = "0.9.0-rc.2", path = ".." } -chewing_capi = { version = "0.9.0-rc.2", path = "../capi" } +chewing = { version = "0.9.0-rc.3", path = ".." } +chewing_capi = { version = "0.9.0-rc.3", path = "../capi" } log = "0.4.21" env_logger = { version = ">= 0.10.2", default-features = false } diff --git a/tests/testhelper/Cargo.toml b/tests/testhelper/Cargo.toml index 8ec94e95..18c07fcb 100644 --- a/tests/testhelper/Cargo.toml +++ b/tests/testhelper/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -chewing = { version = "0.9.0-rc.2", path = "../.." } +chewing = { version = "0.9.0-rc.3", path = "../.." } [features] sqlite = ["chewing/sqlite"] diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 124abd93..4517b695 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -2,12 +2,12 @@ name = "chewing-cli" description = "Tools of the Chewing (酷音) intelligent Zhuyin input method." license = "LGPL-2.1-or-later" -version = "0.9.0-rc.2" +version = "0.9.0-rc.3" edition = "2021" [dependencies] anyhow = "1.0.0" -chewing = { version = "0.9.0-rc.2", path = "..", features = ["sqlite"] } +chewing = { version = "0.9.0-rc.3", path = "..", features = ["sqlite"] } clap = { version = "4.4.18", features = ["derive"] } clap_mangen = { version = "0.2.12", optional = true }