From 435de0d675f42759417ce8e56e6f13795aa645e1 Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Fri, 8 Nov 2024 11:16:53 -0500 Subject: [PATCH 1/2] Changes for 4.3.2 version --- docs/about/releases.md | 20 ++++++++++++++++++++ docs/index.md | 2 +- docs/usage/data.md | 4 ++-- setup.py | 2 +- taxcalc/__init__.py | 2 +- taxcalc/reforms/ext.json | 2 +- 6 files changed, 26 insertions(+), 6 deletions(-) diff --git a/docs/about/releases.md b/docs/about/releases.md index eef8b8ead..59e048970 100644 --- a/docs/about/releases.md +++ b/docs/about/releases.md @@ -4,6 +4,26 @@ Go [here](https://github.com/PSLmodels/Tax-Calculator/pulls?q=is%3Apr+is%3Aclose for a complete commit history. +2024-11-08 Release 4.3.2 +------------------------ +(last merged pull request is +[#2834](https://github.com/PSLmodels/Tax-Calculator/pull/2834)) + +**This is a bug-fix release.** + +**API Changes** + +**New Features** +- Add Policy.tmd_constructor() static method for convenience when using Python API +[[#2834](https://github.com/PSLmodels/Tax-Calculator/pull/2834) by Martin Holmer] + +**Bug Fixes** +- Fix handling of tmd_growfactors.csv file +[[#2832](https://github.com/PSLmodels/Tax-Calculator/pull/2832) by Martin Holmer] +- Fix `tc` reform documentation output +[[#2833](https://github.com/PSLmodels/Tax-Calculator/pull/2833) by Martin Holmer] + + 2024-10-28 Release 4.3.1 ------------------------ (last merged pull request is diff --git a/docs/index.md b/docs/index.md index f9c8bf320..e6309e7e6 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.3.1 (2024-10-28) ` +{doc}`4.3.2 (2024-11-08) ` If you are already using Tax-Calculator, upgrade using the following command: diff --git a/docs/usage/data.md b/docs/usage/data.md index 13d387f33..141c1a3f8 100644 --- a/docs/usage/data.md +++ b/docs/usage/data.md @@ -69,8 +69,8 @@ available only to Tax-Calculator users who have purchased their own version of the 2015 IRS-SOI PUF. For those users, those three files are avaiable from the tax-microdata repository. These three tmd files can be used with the Tax-Calculator Python API (using the -`Records.tmd_constructor()` static method) or with the Tax-Calculator -CLI tool, `tc`. +`Records.tmd_constructor()` and `Policy.tmd_constructor()`static methods) +or with the Tax-Calculator CLI tool, `tc`. ## Using other data with Tax-Calculator diff --git a/setup.py b/setup.py index 29d2bcea6..48fa78297 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ with open("README.md") as f: longdesc = f.read() -version = "4.3.1" +version = "4.3.2" config = { "description": "Tax Calculator", diff --git a/taxcalc/__init__.py b/taxcalc/__init__.py index 01e8fef75..73242a5ff 100644 --- a/taxcalc/__init__.py +++ b/taxcalc/__init__.py @@ -14,6 +14,6 @@ from taxcalc.utils import * from taxcalc.cli import * -__version__ = '4.3.1b' +__version__ = '4.3.2' __min_python3_version__ = 10 __max_python3_version__ = 12 diff --git a/taxcalc/reforms/ext.json b/taxcalc/reforms/ext.json index f3b624e1b..32418b982 100644 --- a/taxcalc/reforms/ext.json +++ b/taxcalc/reforms/ext.json @@ -1,5 +1,5 @@ // REFORM TO EXTEND TEMPORARY TCJA PROVISIONS BEYOND 2025 -// USING TAX-CALCULATOR 4.3.1 +// USING TAX-CALCULATOR 4.3.2 // WITH 2025-to-2026 INDEXING FACTOR = 1.022000 // AND 2028-to-2029 INDEXING FACTOR = 1.019400 { From 573718a0f2a587cc82d84d2e5798b06b1d363207 Mon Sep 17 00:00:00 2001 From: "martin.holmer@gmail.com" Date: Sat, 9 Nov 2024 15:02:28 -0500 Subject: [PATCH 2/2] Update taxcalc.egg-info version --- taxcalc.egg-info/PKG-INFO | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taxcalc.egg-info/PKG-INFO b/taxcalc.egg-info/PKG-INFO index 59007e8e1..85eccd51c 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.3.1 +Version: 4.3.2 Summary: taxcalc Home-page: https://github.com/PSLmodels/Tax-Calculator Download-URL: https://github.com/PSLmodels/Tax-Calculator