diff --git a/python/Cargo.toml b/python/Cargo.toml index 824ac3e..b92000e 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pytextspan" -version = "0.5.3" +version = "0.5.4" authors = ["Yohei Tamura "] edition = "2018" diff --git a/python/pyproject.toml b/python/pyproject.toml index 9d0ebc9..faa8c0f 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [tool.poetry] name = "pytextspan" -version = "0.5.3" +version = "0.5.4" description = "" authors = [ "Yohei Tamura ",] license = "MIT" diff --git a/python/src/lib.rs b/python/src/lib.rs index 95bbd32..895c457 100644 --- a/python/src/lib.rs +++ b/python/src/lib.rs @@ -3,7 +3,7 @@ use textspan::Span; #[pymodule] fn textspan(_py: Python, m: &PyModule) -> PyResult<()> { - m.add("__version__", "0.5.3")?; + m.add("__version__", "0.5.4")?; /// Converts the spans defined in `text` to those defined in `original_text`. ///