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

Release 0.4.0 #132

Merged
merged 3 commits into from
Nov 21, 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
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.7
current_version = 0.4.0
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ and this project adheres to [semantic versioning](https://semver.org/spec/v2.0.0

### Removed

## [0.4.0] - 2024-11-21

### Added

### Changed
- Unpinned `pandas` version in `setup.cfg` to allow for more flexibility
in dependency management.
- Removed `numpy` from `setup.cfg` as it will be installed automatically by `pandas`.

### Deprecated

### Fixed

### Removed

## [v0.3.7] - 2024-11-20

### Added
Expand Down Expand Up @@ -447,6 +462,8 @@ and this project adheres to [semantic versioning](https://semver.org/spec/v2.0.0
> and GitHub Releases.


- rdsa-utils v0.4.0: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.4.0) |
[PyPI](https://pypi.org/project/rdsa-utils/0.4.0/)
- rdsa-utils v0.3.7: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.3.7) |
[PyPI](https://pypi.org/project/rdsa-utils/0.3.7/)
- rdsa-utils v0.3.6: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.3.6) |
Expand Down
2 changes: 1 addition & 1 deletion rdsa_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.3.7"
__version__ = "0.4.0"
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ install_requires =
cloudpathlib[gs]>=0.15.1
humanfriendly>=9.1
more-itertools>=9.0.0
pandas==1.5.3
numpy==1.24.4 # Temporarily pin numpy due to https://github.com/numpy/numpy/issues/26710
pandas
pydantic>=2.6.2
pyyaml>=6.0.1
tomli>=2.0.1
Expand Down
Loading