Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release v0.9.0 #271

Merged
merged 1 commit into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
Release History
---------------
# 0.9.0a0 (2024-10-17)

# 0.9.0 (2024-12-21)

## What's Changed

### 🐛 Bugs fixed

* fix links to readthedocs site by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/257
* fix broken mesa dependencies in GeoJupyterViz by @AdamZh0u in https://github.com/projectmesa/mesa-geo/pull/269

### 🔧 Maintenance

* rename make_geospace_leaflet to make_geospace_component by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/270
* update make_plot_measure method name from mesa viz by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/264
* Require Mesa 3.0 stable by @EwoutH in https://github.com/projectmesa/mesa-geo/pull/260

**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.9.0a1...v0.9.0

# 0.9.0a1 (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
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@
# built documents.
#
# The short X.Y version.
version = "0.8.0"
version = "0.9.0"
# The full version, including alpha/beta/rc tags.
release = "0.8.0"
release = "0.9.0"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion mesa_geo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
]

__title__ = "Mesa-Geo"
__version__ = "0.9.0a1"
__version__ = "0.9.0"
__license__ = "Apache 2.0"
_this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year
__copyright__ = f"Copyright {_this_year} Project Mesa Team"
Loading