diff --git a/CHANGELOG.md b/CHANGELOG.md index 5204762..1d168e6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v1.0.8 (2024-09-11) + +### Fix + +* fix: Removed fragile determination of package version in __init__.py ([`b1a8f00`](https://github.com/pbrod/karney/commit/b1a8f0063948f1af81d9885b50dc1725b72e2f9b)) + ## v1.0.7 (2024-09-11) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 24f701b..c3f640f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "karney" -version = "1.0.7" +version = "1.0.8" description = "Solves the direct and inverse geodesic problem." authors = ["Per A. Brodtkorb"] license = "MIT" diff --git a/src/karney/__init__.py b/src/karney/__init__.py index a6fd88c..757fe61 100644 --- a/src/karney/__init__.py +++ b/src/karney/__init__.py @@ -21,7 +21,7 @@ """ from . import geodesic, util, license -__version__ = "1.0.7" +__version__ = "1.0.8" __doc__ = (__doc__ + geodesic.__doc__