Skip to content

Commit 7ca50cb

Browse files
authored
Merge pull request #2962 from jdebacker/v6
Prepare release 6.0.0
2 parents a973ebb + 2553719 commit 7ca50cb

File tree

5 files changed

+17
-4
lines changed

5 files changed

+17
-4
lines changed

docs/about/releases.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@ Release history
33
Go [here](https://github.com/PSLmodels/Tax-Calculator/pulls?q=is%3Apr+is%3Aclosed)
44
for a complete commit history.
55

6+
2025-09-24 Release 6.0.0
7+
------------------------
8+
(last merged pull request is
9+
[#2961](https://github.com/PSLmodels/Tax-Calculator/pull/2961))
10+
11+
**This is a major release with changes that make Tax-Calculator incompatible with earlier releases.**
12+
13+
**API Changes**
14+
- Removes the taxdata-produced `puf_weights.csv.gz` and `puf_ratios.csv` files. Adds a new `Records.puf_constructor` method for use with PUF data. Users will need to supply their own weights and growfactors files for the PUF as they are no longer included in Tax-Calculator. [[#2961](https://github.com/PSLmodels/Tax-Calculator/pull/2961) by Martin Holmer]
15+
16+
**New Features**
17+
18+
619
2025-09-19 Release 5.3.0
720
------------------------
821
(last merged pull request is

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}`5.3.0 (2025-09-19) <about/releases>`
57+
{doc}`6.0.0 (2025-09-24) <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 = "5.3.0"
10+
VERSION = "6.0.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: 5.3.0
3+
Version: 6.0.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__ = '5.3.0'
17+
__version__ = '6.0.0'
1818
__min_python3_version__ = 11
1919
__max_python3_version__ = 13

0 commit comments

Comments
 (0)