From b86c291b76555b2fdaf2060f269a8144ea1da1b1 Mon Sep 17 00:00:00 2001 From: Garvys Date: Mon, 18 Sep 2023 15:08:39 +0200 Subject: [PATCH] Bump version to 0.13.4 --- 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 a61aa50f4..1fdd44031 100644 --- a/rustfst-cli/Cargo.toml +++ b/rustfst-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-cli" -version = "0.13.3" +version = "0.13.4" authors = ["Garvys "] edition = "2018" diff --git a/rustfst-ffi/Cargo.toml b/rustfst-ffi/Cargo.toml index 135d2a2b9..39d0189aa 100644 --- a/rustfst-ffi/Cargo.toml +++ b/rustfst-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-ffi" -version = "0.13.3" +version = "0.13.4" 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.13.3" } +rustfst = { path = "../rustfst", version = "=0.13.4" } downcast-rs = "1.2.0" \ No newline at end of file diff --git a/rustfst-python/setup.py b/rustfst-python/setup.py index 25fb02ab9..cbbec6635 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.13.3" +VERSION = "0.13.4" 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 0fc295201..808820f71 100644 --- a/rustfst/Cargo.toml +++ b/rustfst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rustfst' -version = "0.13.3" +version = "0.13.4" authors = ['Alexandre Caulier'] description = 'Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).' documentation = 'https://docs.rs/rustfst'