Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhixiong-tang committed Dec 14, 2024
1 parent 6595f57 commit 51d7e13
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/about/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ To upgrade `concave_hull` to the latest version, use pip:
pip install -U concave_hull
```

## Version 0.0.9 (2024-12-15)

* Fix broken package (not well tested)

## Version 0.0.8 (2024-10-03)

* Add typing stubs
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build"

[project]
name = "concave_hull"
version = "0.0.8"
version = "0.0.9"
url = "https://concave-hull.readthedocs.io"
description="A very fast 2D concave hull algorithm"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/concave_hull/_core.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ def wgs84_to_east_north(
documents here: https://github.com/mapbox/cheap-ruler
"""

__version__: str = "0.0.8"
__version__: str = "0.0.9"
1 change: 1 addition & 0 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ convex_hull_indexes(const Eigen::Ref<const RowVectorsNx2> &points,
for (const auto &p : hull) {
index.push_back(static_cast<int>(p[2]));
}
// std::reverse(index.begin(), index.end());
return Eigen::VectorXi::Map(&index[0], index.size());
}

Expand Down

0 comments on commit 51d7e13

Please sign in to comment.