Skip to content

Commit

Permalink
Bump data to 1.9 (#975)
Browse files Browse the repository at this point in the history
* Bump data to 1.9

* Update contributor guidance

* Add guidance
  • Loading branch information
nikhilwoodruff authored Oct 22, 2024
1 parent b19b040 commit ddf57ac
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 2 deletions.
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="nikhil@policyengine.org",
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

0 comments on commit ddf57ac

Please sign in to comment.