From 3799b81622a9ce7bb0ea5b6610313eaf70a4f886 Mon Sep 17 00:00:00 2001 From: Alexandre Caulier Date: Fri, 16 Aug 2024 18:11:11 +0200 Subject: [PATCH] Bump version to 1.1.2 --- Cargo.lock | 6 +++--- rustfst-cli/Cargo.toml | 2 +- rustfst-ffi/Cargo.toml | 4 ++-- rustfst-python/setup.py | 2 +- rustfst/Cargo.toml | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ebecff5e7..f55b97ab2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -730,7 +730,7 @@ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "rustfst" -version = "1.1.0" +version = "1.1.1" dependencies = [ "anyhow", "bimap", @@ -760,7 +760,7 @@ dependencies = [ [[package]] name = "rustfst-cli" -version = "1.1.0" +version = "1.1.1" dependencies = [ "anyhow", "clap", @@ -774,7 +774,7 @@ dependencies = [ [[package]] name = "rustfst-ffi" -version = "1.1.0" +version = "1.1.1" dependencies = [ "anyhow", "downcast-rs", diff --git a/rustfst-cli/Cargo.toml b/rustfst-cli/Cargo.toml index 7ce76e0f2..b83892606 100644 --- a/rustfst-cli/Cargo.toml +++ b/rustfst-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-cli" -version = "1.1.1" +version = "1.1.2" authors = ["Garvys "] edition = "2018" diff --git a/rustfst-ffi/Cargo.toml b/rustfst-ffi/Cargo.toml index 7a266c706..1be0c7edb 100644 --- a/rustfst-ffi/Cargo.toml +++ b/rustfst-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-ffi" -version = "1.1.1" +version = "1.1.2" authors = [ "Emrick Sinitambirivoutin ", "Alexandre Caulier " @@ -33,5 +33,5 @@ anyhow = "1.0" libc = "0.2" ffi-convert = "0.5" # Used locally when developping and used the one from crates.io when publishing -rustfst = { path = "../rustfst", version = "=1.1.1" } +rustfst = { path = "../rustfst", version = "=1.1.2" } downcast-rs = "1.2.0" \ No newline at end of file diff --git a/rustfst-python/setup.py b/rustfst-python/setup.py index 23cc042d1..365d3fc85 100644 --- a/rustfst-python/setup.py +++ b/rustfst-python/setup.py @@ -17,7 +17,7 @@ PACKAGE_NAME = "rustfst-python" RUST_EXTENSION_NAME = "rustfst.dylib.dylib" -VERSION = "1.1.1" +VERSION = "1.1.2" REPO_ROOT_PATH = Path(__file__).resolve().parents[1] CARGO_ROOT_PATH = REPO_ROOT_PATH / "rustfst-ffi" CARGO_FILE_PATH = CARGO_ROOT_PATH / "Cargo.toml" diff --git a/rustfst/Cargo.toml b/rustfst/Cargo.toml index d93da2e84..85d374904 100644 --- a/rustfst/Cargo.toml +++ b/rustfst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rustfst' -version = "1.1.1" +version = "1.1.2" authors = ['Alexandre Caulier'] description = 'Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).' documentation = 'https://docs.rs/rustfst'