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

update history and version number for v0.8.0 #222

Merged
merged 1 commit into from
Aug 22, 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
35 changes: 35 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
Release History
---------------

## 0.8.0 (2024-08-21)

### Highlights

- The Tornado visualization server is removed and replaced with SolaraViz, which also works within Jupyter notebooks (https://github.com/projectmesa/mesa-geo/pull/212). This is in line with Mesa's recent changes to use Solara for visualization.
- The [Introductory Tutorial](https://mesa-geo.readthedocs.io/en/stable/tutorials/intro_tutorial.html) has been fully rewritten for Mesa-Geo 0.8.0
- The 0.8.x series are the releases compatible with Mesa 2.3.x. The next major release will be compatible with Mesa 3.0+.

### 🎉 New features added

* Update mesa-geo to sync with mesa >=2.3.0 by @tpike3 in https://github.com/projectmesa/mesa-geo/pull/212

### 🛠 Enhancements made

* Update tutorial and viz by @tpike3 in https://github.com/projectmesa/mesa-geo/pull/217

### 📜 Documentation improvements

* fix links and installation instructions in README file by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/213
* .readthedocs.yaml: Use latest Ubuntu and Python versions by @EwoutH in https://github.com/projectmesa/mesa-geo/pull/221
* docs: update conf.py to be in sync with mesa by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/223
* docs: remove api docs entry for removed visualization module by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/224
* Fix kernel issue by @tpike3 in https://github.com/projectmesa/mesa-geo/pull/229
* Remove cell output by @tpike3 in https://github.com/projectmesa/mesa-geo/pull/231

### 🔧 Maintenance

* Update configuration, metadata and tests by @tpike3 in https://github.com/projectmesa/mesa-geo/pull/208
* fix: Use correct package name for Pip by @rht in https://github.com/projectmesa/mesa-geo/pull/214
* pyproject.toml: Always use latest ruff by @EwoutH in https://github.com/projectmesa/mesa-geo/pull/219
* pyproject.toml: Use mesa version smaller than 3 for now by @EwoutH in https://github.com/projectmesa/mesa-geo/pull/220
* CI: Add job to test with pre-release dependencies, including Mesa by @EwoutH in https://github.com/projectmesa/mesa-geo/pull/218

**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.7.1...v0.8.0

## 0.7.1 (2024-03-27)

### 🐛 Bugs fixed
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.7.1"
version = "0.8.0"
# The full version, including alpha/beta/rc tags.
release = "0.7.1"
release = "0.8.0"
EwoutH marked this conversation as resolved.
Show resolved Hide resolved

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