From fe83668a72fd58954371346b996dff6e13ac2593 Mon Sep 17 00:00:00 2001 From: Wang Boyu Date: Tue, 4 Feb 2025 17:21:55 -0500 Subject: [PATCH] add v0.9.1 release notes --- HISTORY.md | 14 ++++++++++++++ docs/conf.py | 4 ++-- mesa_geo/__init__.py | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 60348f2d..903ddc2d 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,20 @@ Release History --------------- +# 0.9.1 (2025-02-04) + +## What's Changed + +### 🛠 Enhancements made +* refactor: :recycle: separate cells' initialization into a private method by @SongshGeo in https://github.com/projectmesa/mesa-geo/pull/274 +### 🐛 Bugs fixed +* fix typo in intro tutorial by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/275 + +## New Contributors +* @SongshGeo made their first contribution in https://github.com/projectmesa/mesa-geo/pull/274 + +**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.9.0...v0.9.1 + # 0.9.0 (2024-12-21) ## What's Changed diff --git a/docs/conf.py b/docs/conf.py index c69d3e5d..c34d66e5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = "0.9.0" +version = "0.9.1" # The full version, including alpha/beta/rc tags. -release = "0.9.0" +release = "0.9.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/mesa_geo/__init__.py b/mesa_geo/__init__.py index ed58a2fc..018a1c4f 100644 --- a/mesa_geo/__init__.py +++ b/mesa_geo/__init__.py @@ -24,7 +24,7 @@ ] __title__ = "Mesa-Geo" -__version__ = "0.9.0" +__version__ = "0.9.1" __license__ = "Apache 2.0" _this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year __copyright__ = f"Copyright {_this_year} Project Mesa Team"