From 34b751bda7eca9e2d0010749cb506e86cc51f6c7 Mon Sep 17 00:00:00 2001 From: Wang Boyu Date: Wed, 27 Mar 2024 09:44:16 -0400 Subject: [PATCH] update history and version number for v0.7.1 --- HISTORY.md | 8 ++++++++ docs/conf.py | 4 ++-- mesa_geo/__init__.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 804c6b30..5e0d9b0c 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,14 @@ Release History --------------- +## 0.7.1 (2024-03-27) + +### 🐛 Bugs fixed + +* fix: remove old map layers before rendering new layers by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/194 (thanks @rw73mg for reporting) + +**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.7.0...v0.7.1 + ## 0.7.0 (2024-01-17) ### Special Notes diff --git a/docs/conf.py b/docs/conf.py index 292b5508..74f34a08 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -66,9 +66,9 @@ # built documents. # # The short X.Y version. -version = "0.7.0" +version = "0.7.1" # The full version, including alpha/beta/rc tags. -release = "0.7.0" +release = "0.7.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 3fecc6d6..69cae3c9 100644 --- a/mesa_geo/__init__.py +++ b/mesa_geo/__init__.py @@ -24,7 +24,7 @@ ] __title__ = "Mesa-Geo" -__version__ = "0.7.0" +__version__ = "0.7.1" __license__ = "Apache 2.0" _this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year __copyright__ = f"Copyright {_this_year} Project Mesa-Geo Team"