diff --git a/rustfst-cli/Cargo.toml b/rustfst-cli/Cargo.toml index 84b36e301..3f431e873 100644 --- a/rustfst-cli/Cargo.toml +++ b/rustfst-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-cli" -version = "0.13.0" +version = "0.13.1" authors = ["Garvys "] edition = "2018" diff --git a/rustfst-ffi/Cargo.toml b/rustfst-ffi/Cargo.toml index eb1f4832e..7b0e6279c 100644 --- a/rustfst-ffi/Cargo.toml +++ b/rustfst-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rustfst-ffi" -version = "0.13.0" +version = "0.13.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 = "=0.13.0" } +rustfst = { path = "../rustfst", version = "=0.13.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 c395ce28a..dbe7b1f08 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.0" +VERSION = "0.13.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 de02e700f..ed942ce25 100644 --- a/rustfst/Cargo.toml +++ b/rustfst/Cargo.toml @@ -1,6 +1,6 @@ [package] name = 'rustfst' -version = "0.13.0" +version = "0.13.1" authors = ['Alexandre Caulier'] description = 'Library for constructing, combining, optimizing, and searching weighted finite-state transducers (FSTs).' documentation = 'https://docs.rs/rustfst'