Skip to content

Commit 3bcf207

Browse files
authored
Merge pull request #140 from jdebacker/update_baseline
Merging
2 parents bb8fd1a + e76f917 commit 3bcf207

File tree

5 files changed

+381532
-146
lines changed

5 files changed

+381532
-146
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.3.0] - 2025-09-06 11:00:00
9+
10+
### Added
11+
12+
- Updates the `default_parameters.json` file to represent post-2025 reconciliation bill values of USA parameters and economic conditions.
13+
814
## [0.2.4] - 2025-08-15 21:00:00
915

1016
### Added
@@ -166,6 +172,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
166172
- Any earlier versions of OG-USA can be found in the [`OG-Core`](https://github.com/PSLmodels/OG-Core) repository [release history](https://github.com/PSLmodels/OG-Core/releases) from [v.0.6.4](https://github.com/PSLmodels/OG-Core/releases/tag/v0.6.4) (Jul. 20, 2021) or earlier.
167173

168174

175+
[0.3.0]: https://github.com/PSLmodels/OG-USA/compare/v0.2.4...v0.3.0
169176
[0.2.4]: https://github.com/PSLmodels/OG-USA/compare/v0.2.3...v0.2.4
170177
[0.2.3]: https://github.com/PSLmodels/OG-USA/compare/v0.2.2...v0.2.3
171178
[0.2.2]: https://github.com/PSLmodels/OG-USA/compare/v0.2.1...v0.2.2

examples/run_ogusa.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,14 @@ def main():
7979
# Grab a reform JSON file already in Tax-Calculator
8080
# In this example the 'reform' is a change to 2017 law (the
8181
# baseline policy is tax law in 2018)
82-
reform_url = (
83-
"github://PSLmodels:Tax-Calculator@master/taxcalc/"
84-
+ "reforms/2017_law.json"
85-
)
82+
# reform_url = (
83+
# "github://PSLmodels:Tax-Calculator@master/taxcalc/"
84+
# + "reforms/2017_law.json"
85+
# )
8686

87-
ref = Calculator.read_json_param_objects(reform_url, None)
88-
iit_reform = ref["policy"]
87+
# ref = Calculator.read_json_param_objects(reform_url, None)
88+
# iit_reform = ref["policy"]
89+
iit_reform = {}
8990

9091
# create new Specifications object for reform simulation
9192
p2 = copy.deepcopy(p)

ogusa/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@
1111
from ogusa.utils import *
1212
from ogusa.wealth import *
1313

14-
__version__ = "0.2.4"
14+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)