From 60768b22c2a88185ba9b48560c04dd0b8a026a88 Mon Sep 17 00:00:00 2001 From: Garvys Date: Tue, 21 Jun 2022 17:27:28 +0200 Subject: [PATCH] Bump version to 0.11.5 --- rustfst-cli/Cargo.toml | 2 +- rustfst-ffi/Cargo.toml | 4 ++-- rustfst-python/setup.py | 2 +- rustfst/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/rustfst-cli/Cargo.toml b/rustfst-cli/Cargo.toml index 04cc6d4eb..55f254e99 100644 --- a/rustfst-cli/Cargo.toml +++ b/rustfst-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-cli" -version = "0.11.4" +version = "0.11.5" authors = ["Garvys "] edition = "2018" diff --git a/rustfst-ffi/Cargo.toml b/rustfst-ffi/Cargo.toml index f1a7c0111..f1bb0b833 100644 --- a/rustfst-ffi/Cargo.toml +++ b/rustfst-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-ffi" -version = "0.11.4" +version = "0.11.5" 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 = "=0.11.4" } +rustfst = { path = "../rustfst", version = "=0.11.5" } downcast-rs = "1.2.0" \ No newline at end of file diff --git a/rustfst-python/setup.py b/rustfst-python/setup.py index 6905408f8..80ce48313 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 = "0.11.4" +VERSION = "0.11.5" 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 d6d6c52cc..ce1b5d657 100644 --- a/rustfst/Cargo.toml +++ b/rustfst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rustfst' -version = "0.11.4" +version = "0.11.5" authors = ['Alexandre Caulier'] description = 'Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).' documentation = 'https://docs.rs/rustfst'