Skip to content
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
19 changes: 19 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Release History
---------------

# 0.9.3 (2026-02-17)

## What's Changed
### 🛠 Enhancements made
* Add Cell.xy for RasterLayer cell coordinates and clarify pos/indices semantics by @codebreaker32 in https://github.com/mesa/mesa-geo/pull/299
* handle list of attr_name in apply/get raster data by @wang-boyu in https://github.com/mesa/mesa-geo/pull/303
### 🐛 Bugs fixed
* Fix GeoSpace.to_crs not updating inplace and initializing incorrect CRS by @Tejasv-Singh in https://github.com/mesa/mesa-geo/pull/300
### 📜 Documentation improvements
* unpin mesa version and fix geospace visualization docstring by @wang-boyu in https://github.com/mesa/mesa-geo/pull/301
### 🔧 Maintenance
* make raster layer backward compatible by @wang-boyu in https://github.com/mesa/mesa-geo/pull/305

## New Contributors
* @Tejasv-Singh made their first contribution in https://github.com/mesa/mesa-geo/pull/300
* @codebreaker32 made their first contribution in https://github.com/mesa/mesa-geo/pull/299

**Full Changelog**: https://github.com/mesa/mesa-geo/compare/v0.9.2...v0.9.3

# 0.9.2 (2026-01-05)

## What's Changed
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.9.2"
version = "0.9.3"
# The full version, including alpha/beta/rc tags.
release = "0.9.2"
release = "0.9.3"

# 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.2"
__version__ = "0.9.3"
__license__ = "Apache 2.0"
_this_year = datetime.datetime.now(tz=datetime.timezone.utc).date().year
__copyright__ = f"Copyright {_this_year} Project Mesa Team"
Loading