From dea4475594dceb64c85b89cf1c2ae7c09c7bd212 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 8 Dec 2024 09:02:13 -0500 Subject: [PATCH] bump version and update changelog --- CHANGELOG.md | 7 +++++++ ogcore/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f2c7e777..e9f56317e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.13.2] - 2024-12-08 12:00:00 + +### Added + +- Adds KOR, THA, BRA to the list of countries in the `demographics.py` module. + ## [0.13.1] - 2024-10-02 12:00:00 ### Added @@ -342,6 +348,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Version [0.7.0] on August 30, 2021 was the first time that the OG-USA repository was detached from all of the core model logic, which was named OG-Core. Before this version, OG-USA was part of what is now the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository. In the next version of OG-USA, we adjusted the version numbering to begin with 0.1.0. This initial version of 0.7.0, was sequential from what OG-USA used to be when the OG-Core project was called OG-USA. - Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier. +[0.13.2]: https://github.com/PSLmodels/OG-Core/compare/v0.13.1...v0.13.2 [0.13.1]: https://github.com/PSLmodels/OG-Core/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/PSLmodels/OG-Core/compare/v0.12.0...v0.13.0 [0.12.0]: https://github.com/PSLmodels/OG-Core/compare/v0.11.17...v0.12.0 diff --git a/ogcore/__init__.py b/ogcore/__init__.py index c360e7800..e59259778 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.13.1" +__version__ = "0.13.2" diff --git a/setup.py b/setup.py index 5744aa250..bd9d176d4 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.13.1", + version="0.13.2", author="Jason DeBacker and Richard W. Evans", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="A general equilibrium overlapping generations model for fiscal policy analysis",