From 592499efc268836315abff7956f9deccd305f6f8 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Sun, 23 Jun 2024 18:01:54 -0400 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 0c37fbd6c..bbbd74e62 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.11.11] - 2024-06-24 01:00:00 + +### Added + +- Add new parameters for resource constraint tolerances for steady state and time path solution. + ## [0.11.10] - 2024-06-17 01:00:00 ### Added @@ -253,6 +259,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 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.11]: https://github.com/PSLmodels/OG-Core/compare/v0.11.10...v0.11.11 [0.11.10]: https://github.com/PSLmodels/OG-Core/compare/v0.11.9...v0.11.10 [0.11.9]: https://github.com/PSLmodels/OG-Core/compare/v0.11.8...v0.11.9 [0.11.8]: https://github.com/PSLmodels/OG-Core/compare/v0.11.7...v0.11.8 diff --git a/ogcore/__init__.py b/ogcore/__init__.py index 456043395..a7a60577e 100644 --- a/ogcore/__init__.py +++ b/ogcore/__init__.py @@ -20,4 +20,4 @@ from ogcore.txfunc import * from ogcore.utils import * -__version__ = "0.11.10" +__version__ = "0.11.11" diff --git a/setup.py b/setup.py index 571e96e4a..ad1c98168 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogcore", - version="0.11.10", + version="0.11.11", 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",