Skip to content

Commit 895c5db

Browse files
authored
Merge pull request #2972 from martinholmer/6-2-0
Prepare release 6.2.0
2 parents 63468fe + 8120004 commit 895c5db

File tree

5 files changed

+21
-13
lines changed

5 files changed

+21
-13
lines changed

docs/about/releases.md

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ Go
55
for a complete commit history.
66

77

8+
2025-10-29 Release 6.2.0
9+
------------------------
10+
(last merged pull request is
11+
[#2971](https://github.com/PSLmodels/Tax-Calculator/pull/2971))
12+
13+
**This is an enhancement release.**
14+
15+
**API Changes**
16+
17+
**New Features**
18+
- Advance `Policy.LAST_KNOWN_YEAR` from 2025 to 2026
19+
[[#2971](https://github.com/PSLmodels/Tax-Calculator/pull/2971) by
20+
Martin Holmer]
21+
22+
**Bug Fixes**
23+
24+
825
2025-10-21 Release 6.1.1
926
------------------------
1027
(last merged pull request is
@@ -17,7 +34,6 @@ for a complete commit history.
1734
**New Features**
1835

1936
**Bug Fixes**
20-
2137
- Correct 2026 `AMT_prt` value to reflect OBBBA reform
2238
[[#2969](https://github.com/PSLmodels/Tax-Calculator/pull/2969) by
2339
Martin Holmer]
@@ -33,11 +49,9 @@ for a complete commit history.
3349
**API Changes**
3450

3551
**New Features**
36-
3752
- Rename two policy parameters to clarify they are addons not levels
3853
[[#2965](https://github.com/PSLmodels/Tax-Calculator/pull/2965) by
3954
Martin Holmer]
40-
4155
- Update dependencies in `environment.yml` and `conda.recipe/meta.yaml` files
4256
[[#2964](https://github.com/PSLmodels/Tax-Calculator/pull/2964) by
4357
Martin Holmer]
@@ -54,7 +68,6 @@ for a complete commit history.
5468
incompatible with earlier releases.**
5569

5670
**API Changes**
57-
5871
- Remove the [taxdata](https://github.com/PSLmodels/taxdata)-produced
5972
`puf_weights.csv.gz` and `puf_ratios.csv` files from the
6073
Tax-Calculator repository. Adds a new `Records.puf_constructor`
@@ -80,7 +93,6 @@ for a complete commit history.
8093
**API Changes**
8194

8295
**New Features**
83-
8496
- Update new PUF weights and ratios files.
8597
[[#2925](https://github.com/PSLmodels/Tax-Calculator/pull/2925) by
8698
Bodi Yang], from the update in [[TaxData PR
@@ -95,19 +107,15 @@ for a complete commit history.
95107
- Make `FST_AGI_thd` parameters to be non inflation-indexed
96108
[[#2951](https://github.com/PSLmodels/Tax-Calculator/pull/2951) by
97109
Martin Holmer]
98-
99110
- Add support for Python 3.13
100111
[[#2953](https://github.com/PSLmodels/Tax-Calculator/pull/2953) by
101112
Martin Holmer]
102-
103113
- Add tests for consistent quote style
104114
[[#2954](https://github.com/PSLmodels/Tax-Calculator/pull/2954) by
105115
Martin Holmer]
106-
107116
- Allow CLI --dumpvars DUMPVARS to be the ALL string
108117
[[#2956](https://github.com/PSLmodels/Tax-Calculator/pull/2956) by
109118
Martin Holmer]
110-
111119
- Add documentation on using sub-national TMD weights with CLI tool
112120
[[#2957](https://github.com/PSLmodels/Tax-Calculator/pull/2957) by
113121
Martin Holmer]

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ cross-model validation work with NBER's TAXSIM-35 model is described
5454

5555
## Latest release
5656

57-
{doc}`6.1.1 (2025-10-21) <about/releases>`
57+
{doc}`6.2.0 (2025-10-29) <about/releases>`
5858

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
with open("README.md", "r", encoding="utf-8") as f:
88
longdesc = f.read()
99

10-
VERSION = "6.1.1"
10+
VERSION = "6.2.0"
1111

1212
config = {
1313
"description": "Tax-Calculator",

taxcalc.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.4
22
Name: taxcalc
3-
Version: 6.1.1
3+
Version: 6.2.0
44
Summary: Tax-Calculator
55
Home-page: https://github.com/PSLmodels/Tax-Calculator
66
Download-URL: https://github.com/PSLmodels/Tax-Calculator

taxcalc/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
from taxcalc.utils import *
1515
from taxcalc.cli import *
1616

17-
__version__ = '6.1.1'
17+
__version__ = '6.2.0'
1818
__min_python3_version__ = 11
1919
__max_python3_version__ = 13

0 commit comments

Comments
 (0)