Skip to content

Commit

Permalink
update history, version number & dependencies for v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wang-boyu committed Jan 17, 2024
1 parent 6178160 commit 549c499
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 7 deletions.
25 changes: 25 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,31 @@
Release History
---------------

## 0.7.0 (2024-01-17)

### Special Notes

- update mesa dependency to v2.2

### 🛠 Enhancements made

* create and update rtree spatial index only when needed by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/179

### 🔧 Maintenance

* fix link to examples by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/167
* Correct link to GeoSchelling example and update copyright string by @Holzhauer in https://github.com/projectmesa/mesa-geo/pull/175
* fix rtd build error and upgrade to python 3.9 by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/176
* update pre-commit and ga workflows to be consistent with mesa by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/181
* add config file to automatically generate release notes by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/184
* update ga workflows to be consistent with mesa by @wang-boyu in https://github.com/projectmesa/mesa-geo/pull/185

## New Contributors

* @Holzhauer made their first contribution in https://github.com/projectmesa/mesa-geo/pull/175

**Full Changelog**: https://github.com/projectmesa/mesa-geo/compare/v0.6.0...v0.7.0

## 0.6.0 (2023-09-13)

### Special Notes
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.6.0"
version = "0.7.0"
# The full version, including alpha/beta/rc tags.
release = "0.6.0"
release = "0.7.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.6.0"
__version__ = "0.7.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"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools",
"wheel",
"mesa~=2.1.0",
"mesa~=2.2",
]
build-backend = "setuptools.build_meta"

Expand Down Expand Up @@ -54,5 +54,5 @@ extend-ignore = [
"ISC001", # ruff format asks to disable this feature
]
extend-exclude = ["docs", "build"]
# Hardcode to Python 3.8.
target-version = "py38"
# Hardcode to Python 3.9.
target-version = "py39"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ classifiers =
Natural Language :: English

[options]
python_requires = >=3.8
python_requires = >=3.9
packages = find:
include_package_data = True
install_requires =
Expand Down

0 comments on commit 549c499

Please sign in to comment.