From 710497519faf07690d3799d54a69e8081f1b6a49 Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Mon, 29 Jul 2024 17:56:32 -0400 Subject: [PATCH] Prepare Tax-Calculator 4.2.1 release --- docs/about/releases.md | 21 +++++++++++++++++++++ docs/index.md | 2 +- setup.py | 2 +- taxcalc.egg-info/PKG-INFO | 9 ++++++++- taxcalc/__init__.py | 2 +- 5 files changed, 32 insertions(+), 4 deletions(-) diff --git a/docs/about/releases.md b/docs/about/releases.md index edcd265ec..ea896f736 100644 --- a/docs/about/releases.md +++ b/docs/about/releases.md @@ -4,6 +4,27 @@ Go [here](https://github.com/PSLmodels/Tax-Calculator/pulls?q=is%3Apr+is%3Aclose for a complete commit history. +2024-07-30 Release 4.2.1 +------------------------ +(last merged pull request is +[#2786](https://github.com/PSLmodels/Tax-Calculator/pull/2786)) + +**This is a bug-fix release.** + +**API Changes** + +**New Features** + +**Bug Fixes** +- Add custom `reforms/growfactors_ext.json` file to use in dynamic analysis of the `reforms/ext.json` extend-TCJA-beyond-2025 reform [[#2770](https://github.com/PSLmodels/Tax-Calculator/pull/2777) by Jason DeBacker] +- Fix CDCC phase-out calculations [[#2779](https://github.com/PSLmodels/Tax-Calculator/pull/2779) by Martin Holmer] +- Fix CARES charity deduction for nonitemizers [[#2781](https://github.com/PSLmodels/Tax-Calculator/pull/2781) by Martin Holmer] +- Fix four 2020 PT_rt? parameter values [[#2783](https://github.com/PSLmodels/Tax-Calculator/pull/2783) by Martin Holmer] +- Correct AMT taxable income calculation to handle QBID correctly [[#2784](https://github.com/PSLmodels/Tax-Calculator/pull/2784) by Martin Holmer] +- Fix qualified business income calculation [[#2785](https://github.com/PSLmodels/Tax-Calculator/pull/2785) by Martin Holmer] +- Add `ctc_nonrefundable` variable [[#2786](https://github.com/PSLmodels/Tax-Calculator/pull/2786) by Martin Holmer] + + 2024-07-21 Release 4.2.0 ------------------------ (last merged pull request is diff --git a/docs/index.md b/docs/index.md index 9799634dc..abe53c058 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.2.0 (2024-07-21) ` +{doc}`4.2.1 (2024-07-30) ` If you are already using Tax-Calculator, upgrade using the following command: diff --git a/setup.py b/setup.py index 36c374df6..c5226a8ae 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.md") as f: longdesc = f.read() -version = "4.2.0" +version = "4.2.1" config = { "description": "Tax Calculator", diff --git a/taxcalc.egg-info/PKG-INFO b/taxcalc.egg-info/PKG-INFO index 53bab738d..fe2a5d517 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.2.0 +Version: 4.2.1 Summary: taxcalc Home-page: https://github.com/PSLmodels/Tax-Calculator Download-URL: https://github.com/PSLmodels/Tax-Calculator @@ -19,6 +19,13 @@ Classifier: Programming Language :: Python :: 3.12 Classifier: Topic :: Software Development :: Libraries :: Python Modules Description-Content-Type: text/markdown License-File: LICENSE +Requires-Dist: setuptools +Requires-Dist: numpy +Requires-Dist: pandas +Requires-Dist: bokeh +Requires-Dist: numba +Requires-Dist: requests +Requires-Dist: paramtools | | | | --- | --- | diff --git a/taxcalc/__init__.py b/taxcalc/__init__.py index 593a046f5..91eccf03c 100644 --- a/taxcalc/__init__.py +++ b/taxcalc/__init__.py @@ -14,4 +14,4 @@ from taxcalc.utils import * from taxcalc.cli import * -__version__ = '4.2.0' +__version__ = '4.2.1'