Skip to content

Commit 3818eed

Browse files
authored
Merge branch 'main' into add-scottish-child-payment
2 parents d97236d + ab5b72a commit 3818eed

13 files changed

Lines changed: 68 additions & 27 deletions

File tree

.github/workflows/code_changes.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Workflow that runs on code changes to the master branch.
1+
# Workflow that runs on code changes to the main branch.
22

33
name: Code changes
44
on:
55
push:
66
branches:
7-
- master
7+
- main
88

99
paths:
1010
- policyengine_uk/**

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name: Deploy documentation
55
on:
66
push:
77
# Runs on pushes targeting the default branch
8-
branches: [master]
8+
branches: [main]
99
env:
1010
# `BASE_URL` determines, relative to the root of the domain, the URL that your site is served from.
1111
# E.g., if your site lives at `https://mydomain.org/myproject`, set `BASE_URL=/myproject`.

.github/workflows/pr_code_changes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Code changes
44
on:
55
pull_request:
66
branches:
7-
- master
7+
- main
88

99
paths:
1010
- policyengine_uk/**

.github/workflows/pr_docs_changes.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ name: Docs changes
44
on:
55
pull_request:
66
branches:
7-
- master
7+
- main
88

99
paths:
1010
- docs/**

.github/workflows/versioning.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Workflow that runs on versioning metadata updates.
22

3-
name: Versioning updates
3+
name: Versioning updates
44
on:
55
push:
66
branches:
7-
- master
7+
- main
88

99
paths:
1010
- changelog_entry.yaml

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+
## [2.66.0] - 2026-01-12 16:12:34
9+
10+
### Fixed
11+
12+
- LHA freeze parameter.
13+
814
## [2.65.9] - 2025-12-09 16:16:37
915

1016
### Fixed
@@ -2487,6 +2493,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24872493

24882494

24892495

2496+
[2.66.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.65.9...2.66.0
24902497
[2.65.9]: https://github.com/PolicyEngine/openfisca-uk/compare/2.65.8...2.65.9
24912498
[2.65.8]: https://github.com/PolicyEngine/openfisca-uk/compare/2.65.7...2.65.8
24922499
[2.65.7]: https://github.com/PolicyEngine/openfisca-uk/compare/2.65.6...2.65.7

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
55

66
PolicyEngine UK is [PolicyEngine](https://policyengine.org)'s microsimulation model of the UK tax-benefit system.
7-
It uses the PolicyEngine Core microsimulation framework, which is based on [OpenFisca](https://openfisca.org).
7+
It uses the PolicyEngine Core microsimulation framework, which is based on [OpenFisca](https://openfisca.org).
88

99
The elements are described in different folders. All the modelling happens within the `policyengine_uk` folder.
1010

changelog.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2138,3 +2138,8 @@
21382138
- Refactor variables with redundant adds/subtracts and formula definitions to
21392139
prevent sync issues
21402140
date: 2025-12-09 16:16:37
2141+
- bump: minor
2142+
changes:
2143+
fixed:
2144+
- LHA freeze parameter.
2145+
date: 2026-01-12 16:12:34

changelog_entry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
- bump: minor
22
changes:
33
added:
4-
- Scottish Child Payment - a benefit provided by Social Security Scotland for eligible children under 16 in low-income families receiving qualifying benefits (UC, tax credits, etc.).
4+
- Scottish Child Payment - a benefit provided by Social Security Scotland for eligible children under 16 in low-income families receiving qualifying benefits (UC, tax credits, etc.).

policyengine_uk/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# This file defines the entities needed by our legislation.
44
from policyengine_core.entities import build_entity
55

6-
Household = build_entity(
6+
Household = build_entity(
77
key="household",
88
plural="households",
99
label="Household",

0 commit comments

Comments
 (0)