From 679336e44ed630cdc813ca4ccaf073bcc9a55bb8 Mon Sep 17 00:00:00 2001 From: Yohei Tamura Date: Tue, 16 Feb 2021 13:51:57 +0900 Subject: [PATCH] [versionup] 0.5.1 -> 0.5.2 --- python/Cargo.toml | 2 +- python/pyproject.toml | 8 ++------ python/src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/python/Cargo.toml b/python/Cargo.toml index ec44eaa..e2b0ffb 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pytextspan" -version = "0.5.1" +version = "0.5.2" authors = ["Yohei Tamura "] edition = "2018" diff --git a/python/pyproject.toml b/python/pyproject.toml index e53fd45..6324cda 100644 --- a/python/pyproject.toml +++ b/python/pyproject.toml @@ -1,17 +1,13 @@ -# [build-system] -# requires = [ "poetry>=1.0",] -# build-backend = "poetry.masonry.api" [build-system] -requires = ["maturin"] +requires = [ "maturin",] build-backend = "maturin" [tool.poetry] name = "pytextspan" -version = "0.5.1" +version = "0.5.2" description = "" authors = [ "Yohei Tamura ",] license = "MIT" - [[tool.poetry.packages]] include = "textspan" diff --git a/python/src/lib.rs b/python/src/lib.rs index d60eb64..4576ae3 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.1")?; + m.add("__version__", "0.5.2")?; /// Converts the spans defined in `text` to those defined in `original_text`. ///