Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump data to 1.9 #975

Merged
merged 3 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,25 @@ In case of breaking changes, you **must** give details about what features were

## Advertising changes

Our versioning is currently done manually. You should:

* Add a new entry to the changelog_entry.yaml file. See below for an example.
* Run 'make changelog' to update the changelog.md file.
* Commit and push your changes (this will have changed `CHANGELOG.md`, `changelog.yaml` and `setup.py`).

### Example of a changelog entry

```yaml
- bump: minor
changes:
added:
- Added this thing.
changed:
- Changed that thing.
fixed:
- Bug you fixed.
```

### Version number

We follow the [semantic versioning](http://semver.org/) spec: any change impacts the version number, and the version number conveys API compatibility information **only**.
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.10.0] - 2024-10-22 11:24:42

### Changed

- Data bumped to 1.9.0.

## [2.9.0] - 2024-10-22 08:36:24

### Changed
Expand Down Expand Up @@ -1536,6 +1542,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



[2.10.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.9.0...2.10.0
[2.9.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.8.0...2.9.0
[2.8.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.7.0...2.8.0
[2.7.0]: https://github.com/PolicyEngine/openfisca-uk/compare/2.6.0...2.7.0
Expand Down
5 changes: 5 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1289,3 +1289,8 @@
changed:
- UK data updated to 1.8.0.
date: 2024-10-22 08:36:24
- bump: minor
changes:
changed:
- Data bumped to 1.9.0.
date: 2024-10-22 11:24:42
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name="PolicyEngine-UK",
version="2.9.0",
version="2.10.0",
author="PolicyEngine",
author_email="[email protected]",
classifiers=[
Expand All @@ -27,7 +27,7 @@
],
install_requires=[
"PolicyEngine-Core>=3.6.4",
"PolicyEngine-UK-Data>=1.8,<1.9",
"PolicyEngine-UK-Data>=1.9,<1.10",
"microdf_python",
],
extras_require={
Expand Down
Loading