From 3eb6024dcc053e71c9ce9d8ab66e39d3036a793d Mon Sep 17 00:00:00 2001 From: Garvys Date: Mon, 21 Aug 2023 17:40:01 +0200 Subject: [PATCH] Bump version to 0.13.2 --- 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 3f431e873..eb66e729f 100644 --- a/rustfst-cli/Cargo.toml +++ b/rustfst-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-cli" -version = "0.13.1" +version = "0.13.2" authors = ["Garvys "] edition = "2018" diff --git a/rustfst-ffi/Cargo.toml b/rustfst-ffi/Cargo.toml index 7b0e6279c..eff59a069 100644 --- a/rustfst-ffi/Cargo.toml +++ b/rustfst-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-ffi" -version = "0.13.1" +version = "0.13.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 = "=0.13.1" } +rustfst = { path = "../rustfst", version = "=0.13.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 84dd2b806..335ddbaa5 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.1" +VERSION = "0.13.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 ed942ce25..ebf14e363 100644 --- a/rustfst/Cargo.toml +++ b/rustfst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rustfst' -version = "0.13.1" +version = "0.13.2" authors = ['Alexandre Caulier'] description = 'Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).' documentation = 'https://docs.rs/rustfst'