From 832dfe841f0028a3369a16c60af757d7117f8832 Mon Sep 17 00:00:00 2001 From: jdebacker Date: Wed, 21 Aug 2024 20:08:23 -0400 Subject: [PATCH] bump version and update changelog --- CHANGELOG.md | 11 +++++++++-- ogusa/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f40815d..e8819ea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,17 @@ 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.1.12] - 2024-08-21 12:00:00 + +### Added + +- Streamlined the `run_og_usa.py` script to make the example more clear, run faster, and save output in a common directory. + ## [0.1.11] - 2024-07-26 12:00:00 ### Added -- Adds a module to update Tax-Calculator growth factors using OG-USA simualtions. +- Adds a module to update Tax-Calculator growth factors using OG-USA simulations. ## [0.1.10] - 2024-06-10 12:00:00 @@ -124,7 +130,8 @@ 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.1.12]: https://github.com/PSLmodels/OG-USA/compare/v0.1.11...v0.1.12 +[0.1.11]: https://github.com/PSLmodels/OG-USA/compare/v0.1.10...v0.1.11 [0.1.10]: https://github.com/PSLmodels/OG-USA/compare/v0.1.9...v0.1.10 [0.1.9]: https://github.com/PSLmodels/OG-USA/compare/v0.1.8...v0.1.9 [0.1.8]: https://github.com/PSLmodels/OG-USA/compare/v0.1.7...v0.1.8 diff --git a/ogusa/__init__.py b/ogusa/__init__.py index d2544ef2..c9241647 100644 --- a/ogusa/__init__.py +++ b/ogusa/__init__.py @@ -11,4 +11,4 @@ from ogusa.utils import * from ogusa.wealth import * -__version__ = "0.1.11" +__version__ = "0.1.12" diff --git a/setup.py b/setup.py index 1a94206e..5a8b056a 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="ogusa", - version="0.1.11", + version="0.1.12", author="Jason DeBacker and Richard W. Evans", license="CC0 1.0 Universal (CC0 1.0) Public Domain Dedication", description="USA calibration for OG-Core",