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 .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV

- name: Set up Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
create-args: python=${{ matrix.python-version }}
environment-file: environment-dev.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV

- name: Set up Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
create-args: python=${{ matrix.python-version }}
environment-file: environment-dev.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV

- name: Set up Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
create-args: python=${{ matrix.python-version }}
environment-file: environment-dev.yml
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
run: echo "WEEK=$(date +'%V')" >> $GITHUB_ENV

- name: Set up Python ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
create-args: python=${{ matrix.python-version }}
environment-file: environment-dev.yml
Expand Down
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.10.1"
".": "0.10.2"
}
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ authors:
given-names: "Anastassia"
orcid: "https://orcid.org/0000-0001-6915-2561"
title: "GrowBikeNet"
version: 0.10.1
date-released: 2026-06-15
version: 0.10.2
date-released: 2026-06-17
url: "https://github.com/BikeNetKit/GrowBikeNet"
preferred-citation:
type: article
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Version 0.10.2 (2026-06-17)

- πŸ› Fixed wrong street network definition "all_public", to "drive"
- πŸ› Fixed existing bike net not being usable with street net file
- πŸ“ Added more usage docs

## Version 0.10.1 (2026-06-15)

- πŸ› Added missing checks for seed_point_tags
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.10.1" # x-release-please-version
__version__ = "0.10.2" # x-release-please-version
18 changes: 13 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,16 @@ build-backend = "setuptools.build_meta"

[project]
name = "growbikenet"
version = "0.10.1"
version = "0.10.2"
authors = [
{ name = "Michael Szell" },
{ name = "Manuel Knepper" },
{ name = "Anastassia Vybornova" },
{ name = "Michael Szell", email = "michael@szell.net"},
{ name = "Manuel Knepper"},
{ name = "Anastassia Vybornova"},
]
maintainers = [
{ name = "Michael Szell", email = "michael@szell.net"},
{ name = "Manuel Knepper", email = "manuel.knepper@gmx.net"},
]
maintainers = [{ name = "Manuel Knepper", email = "manuel.knepper@gmx.net" }]
license = "AGPL-3.0-or-later"
readme = "README.md"
description = "BikeNetKit Python package to grow urban bicycle networks"
Expand All @@ -19,13 +22,15 @@ classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Other Audience",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: GIS",
]
requires-python = ">=3.10"
dependencies = [
Expand All @@ -41,8 +46,11 @@ dependencies = [
]

[project.urls]
Homepage = "https://bikenetkit.org/"
Documentation = "https://bikenetkit.github.io/GrowBikeNet/"
Repository = "https://github.com/BikeNetKit/GrowBikeNet"
Issues = "https://github.com/BikeNetKit/GrowBikeNet/issues"
Changelog = "https://github.com/BikeNetKit/GrowBikeNet/blob/main/docs/changelog.md"

[project.optional-dependencies]
test = ["pytest"]
Expand Down
Loading