From b868c9bd7eddbb0b1600e3de2c17b13cd118a3cd Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Sun, 21 Jul 2024 13:48:24 -0400 Subject: [PATCH] Update to 4.2.0 version of Tax-Calculator --- docs/about/releases.md | 14 ++++++++++++++ docs/index.md | 2 +- setup.py | 2 +- taxcalc.egg-info/PKG-INFO | 2 +- taxcalc/__init__.py | 2 +- 5 files changed, 18 insertions(+), 4 deletions(-) diff --git a/docs/about/releases.md b/docs/about/releases.md index 02524c73b..edcd265ec 100644 --- a/docs/about/releases.md +++ b/docs/about/releases.md @@ -4,6 +4,20 @@ Go [here](https://github.com/PSLmodels/Tax-Calculator/pulls?q=is%3Apr+is%3Aclose for a complete commit history. +2024-07-21 Release 4.2.0 +------------------------ +(last merged pull request is +[#2774](https://github.com/PSLmodels/Tax-Calculator/pull/2774)) + +**This is an enhancement release.** + +**API Changes** + +**New Features** +- Add final Phase3 version of tmd input files [[#2774](https://github.com/PSLmodels/Tax-Calculator/pull/2774) by Martin Holmer] +- Update the `thru74` branch to include final Phase3 tmd input files [[#2755](https://github.com/PSLmodels/Tax-Calculator/pull/2755) by Martin Holmer] + + 2024-07-11 Release 4.1.0 ------------------------ (last merged pull request is diff --git a/docs/index.md b/docs/index.md index b975e484a..9799634dc 100644 --- a/docs/index.md +++ b/docs/index.md @@ -57,7 +57,7 @@ The cross-model validation work with NBER's TAXSIM-27 model is described ## Latest release -{doc}`4.1.0 (2024-07-11) ` +{doc}`4.2.0 (2024-07-21) ` If you are already using Tax-Calculator, upgrade using the following command: diff --git a/setup.py b/setup.py index cff9a0e13..36c374df6 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.md") as f: longdesc = f.read() -version = "4.1.0" +version = "4.2.0" config = { "description": "Tax Calculator", diff --git a/taxcalc.egg-info/PKG-INFO b/taxcalc.egg-info/PKG-INFO index 587ad3a08..49fb2cacb 100644 --- a/taxcalc.egg-info/PKG-INFO +++ b/taxcalc.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: taxcalc -Version: 4.1.0 +Version: 4.2.0 Summary: taxcalc Home-page: https://github.com/PSLmodels/Tax-Calculator Download-URL: https://github.com/PSLmodels/Tax-Calculator diff --git a/taxcalc/__init__.py b/taxcalc/__init__.py index dbbe30658..593a046f5 100644 --- a/taxcalc/__init__.py +++ b/taxcalc/__init__.py @@ -14,4 +14,4 @@ from taxcalc.utils import * from taxcalc.cli import * -__version__ = '4.1.0' +__version__ = '4.2.0'