From 751e4c63647ac8ecdb9dbb18b13945d1fabde933 Mon Sep 17 00:00:00 2001 From: Michael Szell Date: Mon, 4 May 2026 13:47:10 +0200 Subject: [PATCH] Package new version 0.7.0 --- .release-please-manifest.json | 2 +- README.md | 2 ++ docs/changelog.md | 15 +++++++++++++-- docs/conf.py | 2 +- growbikenet/_version.py | 2 +- pyproject.toml | 2 +- 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bcd0522..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.0" + ".": "0.7.0" } diff --git a/README.md b/README.md index 7c49eb9..9bda3f1 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ pixi init --import environment.yml Alternatively to Pixi, use [`mamba`](https://mamba.readthedocs.io/en/latest/index.html) or [`conda`](https://docs.conda.io/projects/conda/en/latest/index.html).
Instructions + > [!IMPORTANT] > As of 2026-05-04, the conda-forge installation is not yet working. We will remove this note once it works. @@ -78,6 +79,7 @@ pip install growbikenet After having set up the environment above, if you wish to run growbikenet via [JupyterLab](https://pypi.org/project/jupyterlab/), follow the
Instructions + #### With Pixi Running growbikenet in Jupter lab with [`Pixi`](https://pixi.prefix.dev/latest/) is straightforward: diff --git a/docs/changelog.md b/docs/changelog.md index da85ff5..7070eb4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,10 +1,21 @@ # Changelog +## Version 0.7.0 (2026-05-04) + +- ๐Ÿ†• Added option to grow from existing bicycle network +- ๐Ÿ†• Added option to fetch data from OSM via shape file +- ๐Ÿ†• Export to GPKG or GeoJSON +- ๐Ÿ› Fixed and polished precommit hooks +- ๐Ÿงน Update folder structure for results +- ๐Ÿ†• Export seed points and city boundary too +- ๐Ÿ’พ Round exported coordinates for smaller file sizes +- ๐Ÿงน Removed "all" ranking option + ## Version 0.6.0 (2026-04-28) - ๐Ÿ”ง Bug fix for metric calculation -- โฌ†๏ธ implemented delaunay triangulation for performance improvements -- โฌ†๏ธ improved readme to distuingish between use/development +- โฌ†๏ธ Implemented delaunay triangulation for performance improvements +- โฌ†๏ธ Improved readme to distuingish between use/development ## Version 0.5.2 (2026-04-10) diff --git a/docs/conf.py b/docs/conf.py index ecc9b7b..1118397 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -20,7 +20,7 @@ import growbikenet # noqa # version = growbikenet.__version__ -version = "0.6.0" +version = "0.7.0" release = version # Add any Sphinx extension module names here, as strings. They can be diff --git a/growbikenet/_version.py b/growbikenet/_version.py index 3392ed4..189e7dc 100644 --- a/growbikenet/_version.py +++ b/growbikenet/_version.py @@ -1,3 +1,3 @@ """growbikenet package version.""" -__version__ = "0.6.0" # x-release-please-version +__version__ = "0.7.0" # x-release-please-version diff --git a/pyproject.toml b/pyproject.toml index 79c60e5..e2f69b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "growbikenet" -version = "0.6.0" +version = "0.7.0" authors = [ { name = "Manuel Knepper" }, { name = "Anastassia Vybornova" },