From 1b3e2a7b6f45f0cc525dd02e682dcf2fc230f3cf Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Thu, 17 Oct 2024 06:07:43 +0200 Subject: [PATCH] Update release notes and version for 0.9.0a1 --- HISTORY.md | 12 ++++++++++++ mesa_geo/__init__.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 8db3ae29..957d17e4 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,17 @@ Release History --------------- +# 0.9.0a0 (2024-10-17) +## Highlights +This small pre-release fixes a bug in the RasterLayer rendering and deprecated the old GeoJupyterViz, in favor of the new SolaraViz. + +## What's Changed +### 🐛 Bugs fixed +* fix raster layer rendering in solaraviz by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/254 +### 📜 Documentation improvements +* Deprecate geojupyterviz and update intro tutorial by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/255 + +**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.9.0a0...v0.9.0a1 + # 0.9.0a0 (2024-09-27) ## Highlights The Mesa-geo `v0.9.0a0` pre-release is the first Mesa-geo version compatible with Mesa 3.0. diff --git a/mesa_geo/__init__.py b/mesa_geo/__init__.py index 70b95743..335b5e1f 100644 --- a/mesa_geo/__init__.py +++ b/mesa_geo/__init__.py @@ -24,7 +24,7 @@ ] __title__ = "Mesa-Geo" -__version__ = "0.9.0a0" +__version__ = "0.9.0a1" __license__ = "Apache 2.0" _this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year __copyright__ = f"Copyright {_this_year} Project Mesa Team"