diff --git a/CMakeLists.txt b/CMakeLists.txt index a2d7a94e..a6cd67b6 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.8.4) +set(CMAKE_PROJECT_VERSION 0.8.5) set(LIBCHEWING_VERSION ${CMAKE_PROJECT_VERSION}) set(PACKAGE_VERSION ${CMAKE_PROJECT_VERSION}) set(LIBCHEWING_BINARY_VERSION 1.0.0) diff --git a/Cargo.lock b/Cargo.lock index 8517c25e..2b10b59f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -95,7 +95,7 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "chewing" -version = "0.8.4" +version = "0.8.5" dependencies = [ "der", "directories", @@ -106,7 +106,7 @@ dependencies = [ [[package]] name = "chewing-cli" -version = "0.8.4" +version = "0.8.5" dependencies = [ "anyhow", "chewing", @@ -116,7 +116,7 @@ dependencies = [ [[package]] name = "chewing_capi" -version = "0.8.4" +version = "0.8.5" dependencies = [ "chewing", "env_logger", diff --git a/Cargo.toml b/Cargo.toml index 3e15827c..11cbf0b4 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.8.4" +version = "0.8.5" rust-version = "1.70" edition = "2021" diff --git a/NEWS b/NEWS index c95f9873..3c03467e 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +What's New in libchewing 0.8.5 (July 8, 2024) +--------------------------------------------------------- + +* Changed + - Bump default Corrosion version to v0.5 + +* Bug fixed + - Hanyu Pinyin empty rime handling. (#585, introduced in v0.8.0, reported by + Jidanni) + - Printable non A-Z chars should output symbols in pinyin. (#592, introduced + in v0.8.0, reported by Jidanni) + + What's New in libchewing 0.8.4 (Jun 1, 2024) --------------------------------------------------------- diff --git a/capi/Cargo.toml b/capi/Cargo.toml index a9006826..9a7c69fa 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.8.4" +version = "0.8.5" rust-version = "1.70" edition = "2021" @@ -10,7 +10,7 @@ edition = "2021" crate-type = ["rlib", "staticlib"] [dependencies] -chewing = { version = "0.8.4", path = ".." } +chewing = { version = "0.8.5", path = ".." } env_logger = { version = ">= 0.10.2", default-features = false } log = { workspace = true } diff --git a/doc/chewing-cli.1 b/doc/chewing-cli.1 index 1a3b0f1f..892defee 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.8.4" +.TH chewing-cli 1 "chewing-cli 0.8.5" .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.8.4 \ No newline at end of file +v0.8.5 \ No newline at end of file diff --git a/fuzzer/Cargo.toml b/fuzzer/Cargo.toml index 72cb4c18..2a42586b 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.8.4", path = ".." } -chewing_capi = { version = "0.8.4", path = "../capi" } +chewing = { version = "0.8.5", path = ".." } +chewing_capi = { version = "0.8.5", 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 22c2fe28..6e9cbe22 100644 --- a/tests/testhelper/Cargo.toml +++ b/tests/testhelper/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -chewing = { version = "0.8.4", path = "../.." } +chewing = { version = "0.8.5", path = "../.." } [features] sqlite = ["chewing/sqlite"] diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 834bcbb8..dc4efc7a 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.8.4" +version = "0.8.5" edition = "2021" [dependencies] anyhow = "1.0.0" -chewing = { version = "0.8.4", path = "..", features = ["sqlite"] } +chewing = { version = "0.8.5", path = "..", features = ["sqlite"] } clap = { version = "4.4.18", features = ["derive"] } clap_mangen = { version = "0.2.12", optional = true }