diff --git a/CHANGELOG.md b/CHANGELOG.md index 61f3ce4..a79194a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1,15 @@ + +## v0.1.0 (2022-11-03) +### Feature +* Add basic python interface ([`b6cea4b`](https://github.com/mblackgeo/fast-alphashape/commit/b6cea4befd6da2c04750331414b8a36bc304d202)) +* Implement main alpha shape algorithm ([`9969278`](https://github.com/mblackgeo/fast-alphashape/commit/99692788ad25d4d9a5eb6c673218fd9570d4a6f3)) +* Return i32 from alpha simplices rather than f64 ([`7521871`](https://github.com/mblackgeo/fast-alphashape/commit/7521871219a47c7c12a3dd8104f158a98cb36131)) +* Add alpha simplices function ([`b525159`](https://github.com/mblackgeo/fast-alphashape/commit/b52515991c96d74735248faad39587bec3a0a0a4)) +* Add circumradius function ([`7021383`](https://github.com/mblackgeo/fast-alphashape/commit/70213837b0252c78d62e30a255803524c916afdc)) +* Add circumcentre function ([`a0e9deb`](https://github.com/mblackgeo/fast-alphashape/commit/a0e9deb2b97c9219a45515dc9b19b5129f18b057)) +* Work in progress on circumcentre function ([`668b82c`](https://github.com/mblackgeo/fast-alphashape/commit/668b82c0c6cabf44e6b88cd29e7dc4334154572f)) +* Add intial package wireframe using maturin ([`ebd996a`](https://github.com/mblackgeo/fast-alphashape/commit/ebd996ac3f5bab45681bb68c2f12572ac9b63b11)) + +### Documentation +* Populate README with installation, quick start, development, and credits ([`ac890cf`](https://github.com/mblackgeo/fast-alphashape/commit/ac890cf29f337c895282ef374fe1e5aa8f69b300)) diff --git a/Cargo.toml b/Cargo.toml index c49adf8..4e91271 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "fast-alphashape" -version = "0.0.0" +version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/pyproject.toml b/pyproject.toml index cee4ec0..1b70a0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "fast-alphashape" -version = "0.0.0" +version = "0.1.0" requires-python = ">=3.7" description = "A Rust backed implementation for generating 2D alpha shapes from points" authors = [ diff --git a/python/fast_alphashape/__init__.py b/python/fast_alphashape/__init__.py index a82b4f3..974f434 100644 --- a/python/fast_alphashape/__init__.py +++ b/python/fast_alphashape/__init__.py @@ -5,7 +5,7 @@ from ._fast_alphashape import alphashape_wrapper -__version__ = "0.0.0" +__version__ = "0.1.0" def alphashape(points: np.array, alpha: float) -> Polygon: