Skip to content

Commit 89b035d

Browse files
Fix bug removing capital gains (#40)
1 parent 5b2ef72 commit 89b035d

5 files changed

Lines changed: 15 additions & 3 deletions

File tree

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+
## [1.9.0] - 2024-10-22 11:18:48
9+
10+
### Fixed
11+
12+
- Bug removing capital gains.
13+
814
## [1.8.0] - 2024-10-22 08:30:52
915

1016
### Changed
@@ -85,6 +91,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8591

8692

8793

94+
[1.9.0]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.8.0...1.9.0
8895
[1.8.0]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.7.0...1.8.0
8996
[1.7.0]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.6.0...1.7.0
9097
[1.6.0]: https://github.com/PolicyEngine/policyengine-us-data/compare/1.5.0...1.6.0

changelog.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,3 +70,8 @@
7070
changed:
7171
- Data URLs updated.
7272
date: 2024-10-22 08:30:52
73+
- bump: minor
74+
changes:
75+
fixed:
76+
- Bug removing capital gains.
77+
date: 2024-10-22 11:18:48

policyengine_uk_data/datasets/frs/enhanced_frs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ class EnhancedFRS_2022_23(EnhancedFRS):
8484
input_frs = ExtendedFRS_2022_23
8585
time_period = 2022
8686
end_year = 2028
87-
url = "release://PolicyEngine/ukda/1.8.0/enhanced_frs_2022_23.h5"
87+
url = "release://PolicyEngine/ukda/1.9.0/enhanced_frs_2022_23.h5"
8888

8989

9090
def reweight(

policyengine_uk_data/datasets/frs/frs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class FRS_2022_23(FRS):
138138
label = "FRS (2022-23)"
139139
file_path = STORAGE_FOLDER / "frs_2022_23.h5"
140140
time_period = 2022
141-
url = "release://PolicyEngine/ukda/1.8.0/frs_2022_23.h5"
141+
url = "release://PolicyEngine/ukda/1.9.0/frs_2022_23.h5"
142142

143143

144144
def add_id_variables(frs: h5py.File, person: DataFrame, household: DataFrame):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "policyengine_uk_data"
7-
version = "1.8.0"
7+
version = "1.9.0"
88
description = "A package to create representative microdata for the UK."
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)