From 44d345508d88064d16b74177127f7922ecac13b8 Mon Sep 17 00:00:00 2001 From: Guillaume Bertrand Date: Wed, 22 Nov 2023 22:29:55 +0100 Subject: [PATCH] bump version --- Cargo.lock | 2 +- Cargo.toml | 2 +- pyproject.toml | 2 +- python/powerboxes/__init__.py | 2 +- src/lib.rs | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 58d7d30..8702756 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,7 +469,7 @@ dependencies = [ [[package]] name = "powerboxesrs" -version = "0.1.2" +version = "0.1.3" dependencies = [ "codspeed-criterion-compat", "criterion", diff --git a/Cargo.toml b/Cargo.toml index bf02e8b..9c78153 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "powerboxesrs" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "MIT" readme = "README.md" diff --git a/pyproject.toml b/pyproject.toml index 8092b41..fba8ec3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,7 +26,7 @@ readme = "README.md" authors = [{name = "Buillaume", email = "guillaume.bertrand@edhec.com"}] description = "Utility functions to manipulate and compute metrics on boxes" repository = "https://github.com/Smirkey/powerboxes" -version = "0.1.2" +version = "0.1.3" [tool.maturin] python-source = "python" diff --git a/python/powerboxes/__init__.py b/python/powerboxes/__init__.py index 402a166..40d5481 100644 --- a/python/powerboxes/__init__.py +++ b/python/powerboxes/__init__.py @@ -145,7 +145,7 @@ } BOXES_NOT_SAME_TYPE = "boxes1 and boxes2 must have the same dtype" BOXES_NOT_NP_ARRAY = "boxes must be numpy array" -__version__ = "0.1.2" +__version__ = "0.1.3" def iou_distance(boxes1: np.ndarray, boxes2: np.ndarray) -> np.ndarray: diff --git a/src/lib.rs b/src/lib.rs index 5c4ee08..aad9a56 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -11,7 +11,7 @@ //! //! ```toml //! [dependencies] -//! powerboxesrs = "0.1.2" +//! powerboxesrs = "0.1.3" //! ``` //! //! ## Usage