From 3b78f978287ddbdde302e39243c6a2cc8edea2fc Mon Sep 17 00:00:00 2001 From: matthjensen Date: Mon, 1 Mar 2021 11:49:03 -0500 Subject: [PATCH] 3-1-0 --- docs/about/releases.md | 21 +++++++++++++++++++++ docs/index.md | 2 +- setup.py | 2 +- taxcalc/__init__.py | 2 +- 4 files changed, 24 insertions(+), 3 deletions(-) diff --git a/docs/about/releases.md b/docs/about/releases.md index 817fe19d3..9c145060f 100644 --- a/docs/about/releases.md +++ b/docs/about/releases.md @@ -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 diff --git a/docs/index.md b/docs/index.md index 5cf77d2f2..5b1be8fbd 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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) ` +{doc}`3.1.0 (2020-03-01) ` If you are already using Tax-Calculator, upgrade using the following command: diff --git a/setup.py b/setup.py index f9222ec4e..9ce5e4a57 100755 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/taxcalc/__init__.py b/taxcalc/__init__.py index e60434c1d..267924cb5 100755 --- a/taxcalc/__init__.py +++ b/taxcalc/__init__.py @@ -14,4 +14,4 @@ from taxcalc.utils import * from taxcalc.cli import * -__version__ = '3.0.0' +__version__ = '3.1.0'