Skip to content

Commit

Permalink
0.1.0
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
actions-user committed Nov 3, 2022
1 parent 5d5eeff commit cb77f0b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,15 @@
<!--next-version-placeholder-->

## 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))
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion python/fast_alphashape/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit cb77f0b

Please sign in to comment.