diff --git a/CHANGELOG.md b/CHANGELOG.md index 832a95a..2c084f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.0.4] - 2024-12-07 12:00:00 + +### Added + +- Tests on Python 3.12 +- Updates symbol for local currency units in `constants.py` + + ## [0.0.3] - 2024-07-26 12:00:00 ### Added @@ -41,7 +49,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - This version is a pre-release alpha. The example run script OG-ZAF/examples/run_og_zaf.py runs, but the model is not currently calibrated to represent the South African economy and population. - +[0.0.4]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.1...v0.0.2 [0.0.1]: https://github.com/EAPD-DRB/OG-ZAF/compare/v0.0.0...v0.0.1 diff --git a/ogzaf/__init__.py b/ogzaf/__init__.py index ee9eb47..7ca8747 100644 --- a/ogzaf/__init__.py +++ b/ogzaf/__init__.py @@ -8,4 +8,4 @@ from ogzaf.macro_params import * from ogzaf.utils import * -__version__ = "0.0.3" +__version__ = "0.0.4" diff --git a/pyproject.toml b/pyproject.toml index ac83d12..e033eb0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,5 +11,5 @@ build-backend = "setuptools.build_meta" [tool.black] line-length = 79 -target-version = ["py310", "py311"] +target-version = ["py311", "py312"] include = '\.pyi?$' diff --git a/setup.py b/setup.py index 6aab7c9..5cd9e57 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogzaf", - version="0.0.3", + version="0.0.4", author="Marcelo LaFleur, Richard W. Evans, and Jason DeBacker", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="South Africa Calibration for OG-Core",