Skip to content

Commit 8ea2098

Browse files
committed
Update PolicyEngine API
1 parent 3367791 commit 8ea2098

5 files changed

Lines changed: 15 additions & 6 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+
## [3.17.1] - 2025-04-16 18:49:28
9+
10+
### Changed
11+
12+
- Fixed tracer parsing function. It was not properly handling variables whose names are substrings of other variables.
13+
814
## [3.17.0] - 2025-04-16 18:29:11
915

1016
### Added
@@ -5576,6 +5582,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55765582

55775583

55785584

5585+
[3.17.1]: https://github.com/PolicyEngine/policyengine-api/compare/3.17.0...3.17.1
55795586
[3.17.0]: https://github.com/PolicyEngine/policyengine-api/compare/3.16.6...3.17.0
55805587
[3.16.6]: https://github.com/PolicyEngine/policyengine-api/compare/3.16.5...3.16.6
55815588
[3.16.5]: https://github.com/PolicyEngine/policyengine-api/compare/3.16.4...3.16.5

changelog.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4652,3 +4652,9 @@
46524652
added:
46534653
- Tests for execute_analysis function
46544654
date: 2025-04-16 18:29:11
4655+
- bump: patch
4656+
changes:
4657+
changed:
4658+
- Fixed tracer parsing function. It was not properly handling variables whose
4659+
names are substrings of other variables.
4660+
date: 2025-04-16 18:49:28

changelog_entry.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
- bump: patch
2-
changes:
3-
changed:
4-
- Fixed tracer parsing function. It was not properly handling variables whose names are substrings of other variables.

policyengine_api/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
POST = "POST"
77
UPDATE = "UPDATE"
88
LIST = "LIST"
9-
VERSION = "3.17.0"
9+
VERSION = "3.17.1"
1010
COUNTRIES = ("uk", "us", "ca", "ng", "il")
1111
COUNTRY_PACKAGE_NAMES = (
1212
"policyengine_uk",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"policyengine-il==0.1.0",
2727
"policyengine_uk==2.22.8",
2828
"policyengine_us==1.250.0",
29-
"policyengine_core>=3.17.0",
29+
"policyengine_core>=3.17.1",
3030
"pydantic",
3131
"pymysql",
3232
"redis",

0 commit comments

Comments
 (0)