From b91f96fd78040f510371d55bb457a3b090ff4977 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Sat, 10 Aug 2024 22:45:14 +0800 Subject: [PATCH 1/2] Updated version --- CHANGELOG.md | 10 ++++++++++ ogcore/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 892b933b9..a09429d72 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.11.16] - 2024-08-10 12:00:00 + +### Added + +- Added parameter script `make_params.py` that generates a markdown file for the documentation `parameters.md`. Updates `Makefile`, and GitHub Actions ([PR #963](https://github.com/PSLmodels/OG-Core/pull/963)) +- Updated debt-to-GDP plot labels ([PR #962](https://github.com/PSLmodels/OG-Core/pull/962)) + ## [0.11.15] - 2024-07-30 12:00:00 ### Bug Fix @@ -282,6 +290,8 @@ 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.11.16]: https://github.com/PSLmodels/OG-Core/compare/v0.11.15...v0.11.16 [0.11.15]: https://github.com/PSLmodels/OG-Core/compare/v0.11.14...v0.11.15 [0.11.14]: https://github.com/PSLmodels/OG-Core/compare/v0.11.13...v0.11.14 [0.11.13]: https://github.com/PSLmodels/OG-Core/compare/v0.11.11...v0.11.13 diff --git a/ogcore/__init__.py b/ogcore/__init__.py index e901b4fe9..18ff55530 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.11.15" +__version__ = "0.11.16" diff --git a/setup.py b/setup.py index d6ab47615..f430ca8d7 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.11.15", + version="0.11.16", author="Jason DeBacker and Richard W. Evans", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="A general equilibribum overlapping generations model for fiscal policy analysis", From 2dde73acc51028fe588298da75fae96b4ceeefa6 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Sat, 10 Aug 2024 22:52:11 +0800 Subject: [PATCH 2/2] Added link in top docstring of demographics.py --- ogcore/demographics.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/ogcore/demographics.py b/ogcore/demographics.py index ce07abdfd..f22b8b13e 100644 --- a/ogcore/demographics.py +++ b/ogcore/demographics.py @@ -1,8 +1,9 @@ """ ------------------------------------------------------------------------- -Functions for generating demographic objects necessary for the OG-USA -model ------------------------------------------------------------------------- +------------------------------------------------------------------------------- +Functions for generating demographic objects necessary for the OG-USA model. A +list of UN official 3-digit country codes and corresponding 3-character country +abbreviations is available at https://unstats.un.org/unsd/methodology/m49/ +------------------------------------------------------------------------------- """ # Import packages