Skip to content

Commit 77e59f8

Browse files
committed
Update PolicyEngine API
1 parent 3638b62 commit 77e59f8

5 files changed

Lines changed: 14 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.38.0] - 2026-03-06 14:02:26
9+
10+
### Changed
11+
12+
- Migrated from setup.py to pyproject.toml with hatchling build backend
13+
814
## [3.37.0] - 2026-03-06 13:31:16
915

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

64516457

64526458

6459+
[3.38.0]: https://github.com/PolicyEngine/policyengine-api/compare/3.37.0...3.38.0
64536460
[3.37.0]: https://github.com/PolicyEngine/policyengine-api/compare/3.36.0...3.37.0
64546461
[3.36.0]: https://github.com/PolicyEngine/policyengine-api/compare/3.35.4...3.36.0
64556462
[3.35.4]: https://github.com/PolicyEngine/policyengine-api/compare/3.35.3...3.35.4

changelog.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5429,3 +5429,8 @@
54295429
changed:
54305430
- Switched code formatter from Black to Ruff.
54315431
date: 2026-03-06 13:31:16
5432+
- bump: minor
5433+
changes:
5434+
changed:
5435+
- Migrated from setup.py to pyproject.toml with hatchling build backend
5436+
date: 2026-03-06 14:02:26

changelog_entry.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +0,0 @@
1-
- bump: minor
2-
changes:
3-
changed:
4-
- Migrated from setup.py to pyproject.toml with hatchling build backend

policyengine_api/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
POST = "POST"
88
UPDATE = "UPDATE"
99
LIST = "LIST"
10-
VERSION = "3.37.0"
10+
VERSION = "3.38.0"
1111
CURRENT_YEAR = str(datetime.now().year)
1212
COUNTRIES = ("uk", "us", "ca", "ng", "il")
1313
COUNTRY_PACKAGE_NAMES = (

pyproject.toml

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

55
[project]
66
name = "policyengine-api"
7-
version = "3.37.0"
7+
version = "3.38.0"
88
description = "PolicyEngine API"
99
readme = "README.md"
1010
license = "AGPL-3.0-only"

0 commit comments

Comments
 (0)