Skip to content

Commit

Permalink
Merge pull request #2835 from martinholmer/4-3-2
Browse files Browse the repository at this point in the history
Changes for 4.3.2 version
  • Loading branch information
jdebacker authored Nov 12, 2024
2 parents a231823 + 573718a commit aaa4eb9
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 7 deletions.
20 changes: 20 additions & 0 deletions docs/about/releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) <about/releases>`
{doc}`4.3.2 (2024-11-08) <about/releases>`

If you are already using Tax-Calculator, upgrade using the following command:

Expand Down
4 changes: 2 additions & 2 deletions docs/usage/data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion taxcalc.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion taxcalc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion taxcalc/reforms/ext.json
Original file line number Diff line number Diff line change
@@ -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
{
Expand Down

0 comments on commit aaa4eb9

Please sign in to comment.