Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.0"
".": "0.7.0"
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

<details><summary>Instructions</summary>

> [!IMPORTANT]
> As of 2026-05-04, the conda-forge installation is not yet working. We will remove this note once it works.

Expand All @@ -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

<details><summary>Instructions</summary>

#### With Pixi
Running growbikenet in Jupter lab with [`Pixi`](https://pixi.prefix.dev/latest/) is straightforward:

Expand Down
15 changes: 13 additions & 2 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion growbikenet/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""growbikenet package version."""

__version__ = "0.6.0" # x-release-please-version
__version__ = "0.7.0" # x-release-please-version
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 = "setuptools.build_meta"

[project]
name = "growbikenet"
version = "0.6.0"
version = "0.7.0"
authors = [
{ name = "Manuel Knepper" },
{ name = "Anastassia Vybornova" },
Expand Down
Loading