Skip to content

Commit

Permalink
fix: bump version to 1.0.1
Browse files Browse the repository at this point in the history
- update docs/changelog.rst
  • Loading branch information
cbueth committed Dec 4, 2024
1 parent b0802bc commit 811a464
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
9 changes: 9 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
Changelog
*********

Version 1.0.1 (2024-12-04)
**************************

* 🧹 Lint: Reconfigured linting settings.
* 🐛 Fixes: Removed unused Haversine distance function and adapted to `osmnx` API changes.
* 🛠️ Update: Updated `test.yml` for artifacts v4.4.0 breaking change.
* 📝 Documentation: Various updates including changelog, badge links,
mobile optimization, GitHub handles, installation instructions, `CITATION.cff`, and `paper.md`.

Version 1.0.0 (2024-08-12)
**************************

Expand Down
5 changes: 3 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#
import os
import sys
from datetime import datetime

sys.path.insert(0, os.path.abspath(".."))

Expand All @@ -22,9 +23,9 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

project = "superblockify"
copyright = "2023-2024, superblockify developers"
copyright = f"2023-{datetime.now().year}, superblockify developers"
author = "superblockify developers"
release = "1.0.0"
release = "1.0.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion superblockify/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""superblockify package version."""

__version__ = "1.0.0"
__version__ = "1.0.1"

0 comments on commit 811a464

Please sign in to comment.