diff --git a/docs/changelog.rst b/docs/changelog.rst index 552368b..6266b15 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -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) ************************** diff --git a/docs/conf.py b/docs/conf.py index 04ca8ce..7b9c1bc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,6 +11,7 @@ # import os import sys +from datetime import datetime sys.path.insert(0, os.path.abspath("..")) @@ -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 diff --git a/superblockify/_version.py b/superblockify/_version.py index d699f53..901b7c0 100644 --- a/superblockify/_version.py +++ b/superblockify/_version.py @@ -1,3 +1,3 @@ """superblockify package version.""" -__version__ = "1.0.0" +__version__ = "1.0.1"