Skip to content

Commit

Permalink
Merge pull request #2566 from MattHJensen/3-1-0
Browse files Browse the repository at this point in the history
Prepares 3.1.0
  • Loading branch information
MattHJensen committed Mar 1, 2021
2 parents d6c2763 + 3b78f97 commit f85c315
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions docs/about/releases.md
Expand Up @@ -4,6 +4,27 @@ Go [here](https://github.com/PSLmodels/Tax-Calculator/pulls?q=is%3Apr+is%3Aclose
for a complete commit history.


2021-03-01 Release 3.1.0
------------------------
(last merged pull request is
[#2566](https://github.com/PSLmodels/Tax-Calculator/pull/2566))

**This is an enhancement and bug-fix release.**

**API Changes**

**New Features**
- Package for Python 3.9. [[#2522](https://github.com/PSLmodels/tax-calculator/pull/2522) by Max Ghenis]
- Parameters for QBI deduction phaseout. [[#2508](https://github.com/PSLmodels/tax-calculator/pull/2508) by Peter Metz]
- Switch for QBI deduction wage and capital limitations. [[#2497(https://github.com/PSLmodels/tax-calculator/pull/2497) by Peter Metz]
- Interaction with `calcfunctions.py` functions and unit tests without `@jit` decorator. [[#2515](https://github.com/PSLmodels/tax-calculator/pull/2515) by Jacob Chuslo]

**Bug Fixes**
- Fix default parameter value for deduction for blind and aged widowed taxpayers. [[#2537](https://github.com/PSLmodels/tax-calculator/pull/2537) by Jacob Chuslo, reported by Jason DeBacker]
- Include self-employment tax in calculation of partnership-specific marginal tax rates. [[#2486](https://github.com/PSLmodels/tax-calculator/pull/2486) by Cody Kallen]
- Fix stacking of an optional capital gains tax bracket. [[#2500](https://github.com/PSLmodels/tax-calculator/pull/2500) by Peter Metz]
- Fix bug caused by adjusting the indexed status of a parameter while also adjusting the parameter's value and a related parameter's value. [[#2532](https://github.com/PSLmodels/tax-calculator/pull/2532) by Hank Doupe]

2020-08-24 Release 3.0.0
------------------------
(last merged pull request is
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Expand Up @@ -51,7 +51,7 @@ The cross-model validation work with NBER's TAXSIM-27 model is described

## Latest release

{doc}`3.0.0 (2020-08-22) <about/releases>`
{doc}`3.1.0 (2020-03-01) <about/releases>`

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

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -6,7 +6,7 @@
with open('README.md') as f:
longdesc = f.read()

version = '3.0.0'
version = '3.1.0'

config = {
'description': 'Tax Calculator',
Expand Down
2 changes: 1 addition & 1 deletion taxcalc/__init__.py
Expand Up @@ -14,4 +14,4 @@
from taxcalc.utils import *
from taxcalc.cli import *

__version__ = '3.0.0'
__version__ = '3.1.0'

0 comments on commit f85c315

Please sign in to comment.