diff --git a/rustfst-cli/Cargo.toml b/rustfst-cli/Cargo.toml index 3de5a0b41..7ce76e0f2 100644 --- a/rustfst-cli/Cargo.toml +++ b/rustfst-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-cli" -version = "1.1.0" +version = "1.1.1" authors = ["Garvys "] edition = "2018" diff --git a/rustfst-ffi/Cargo.toml b/rustfst-ffi/Cargo.toml index 76b39dd70..5213a46dc 100644 --- a/rustfst-ffi/Cargo.toml +++ b/rustfst-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-ffi" -version = "1.1.0" +version = "1.1.1" 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.0" } +rustfst = { path = "../rustfst", version = "=1.1.1" } downcast-rs = "1.2.0" \ No newline at end of file diff --git a/rustfst-python/setup.py b/rustfst-python/setup.py index 9721fc226..f799e1fe1 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.0" +VERSION = "1.1.1" 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 b48d93ce8..d93da2e84 100644 --- a/rustfst/Cargo.toml +++ b/rustfst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rustfst' -version = "1.1.0" +version = "1.1.1" authors = ['Alexandre Caulier'] description = 'Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).' documentation = 'https://docs.rs/rustfst'