Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Smirkey committed Nov 22, 2023
1 parent 42a7261 commit 44d3455
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "powerboxesrs"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion python/powerboxes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//!
//! ```toml
//! [dependencies]
//! powerboxesrs = "0.1.2"
//! powerboxesrs = "0.1.3"
//! ```
//!
//! ## Usage
Expand Down

0 comments on commit 44d3455

Please sign in to comment.