diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d7e5f1..b870c5e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.0.1" + ".": "1.0.2" } diff --git a/docs/changelog.md b/docs/changelog.md index 1dde916..b1debd5 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,22 @@ # Changelog +## [1.0.2](https://github.com/BikeNetKit/superblockify/compare/1.0.1...v1.0.2) (2026-03-20) + + +### Bug Fixes + +* TypeError in utils ([fc622f3](https://github.com/BikeNetKit/superblockify/commit/fc622f354f34da287ffef32c1939351d6f229e0b)) +* use inbuilt `sum` due to `numpy` incomp. ([982e4d9](https://github.com/BikeNetKit/superblockify/commit/982e4d988a03ee0e1f8beb67674337d3fd346a20)) [#104](https://github.com/BikeNetKit/superblockify/pull/104) +* Use partitioner copy fixture ([d38ac6e](https://github.com/BikeNetKit/superblockify/commit/d38ac6e3742d3198dba8171402f24f411df50bab)) + +### Documentation + +* Add Master Thesis link and references ([733b644](https://github.com/BikeNetKit/superblockify/commit/733b64448f4bdb22075f8e6d747bc08a3c2855b7)) + +### Acknowledgements + +Thanks to @juanfonsecaLS1 for testing and feedback. + ## Version 1.0.1 (2024-12-04) * 🧹 Lint: Reconfigured linting settings. diff --git a/docs/conf.py b/docs/conf.py index 5c33dc3..788db3b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -25,7 +25,7 @@ project = "superblockify" copyright = f"2023-{datetime.now().year}, superblockify developers" author = "superblockify developers" -release = "1.0.1" # x-release-please-version +release = "1.0.2" # x-release-please-version # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/superblockify/_version.py b/superblockify/_version.py index 7a5dfb9..0bd6b81 100644 --- a/superblockify/_version.py +++ b/superblockify/_version.py @@ -1,3 +1,3 @@ """superblockify package version.""" -__version__ = "1.0.1" # x-release-please-version +__version__ = "1.0.2" # x-release-please-version