Skip to content

Commit

Permalink
Merge pull request #103 from ONSdigital/development
Browse files Browse the repository at this point in the history
Release 0.3.1
  • Loading branch information
dombean authored May 24, 2024
2 parents 2f05d65 + be83dea commit bd6d295
Show file tree
Hide file tree
Showing 8 changed files with 1,475 additions and 5 deletions.
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.0
current_version = 0.3.1
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

## [v0.3.1] - 2024-05-24

### Added
- Added `zip_folder` function to `io/output.py`.

### Changed
- Modified `gcp_utils.py`, added more helper functions for GCS.
- Modified docstring for `InvalidBucketNameError` in `exceptions.py`.

### Deprecated

### Fixed

### Removed

## [v0.3.0] - 2024-05-20

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

- rdsa-utils v0.3.1: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.3.1) |
[PyPI](https://pypi.org/project/rdsa-utils/0.3.1/)
- rdsa-utils v0.3.0: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.3.0) |
[PyPI](https://pypi.org/project/rdsa-utils/0.3.0/)
- rdsa-utils v0.2.3: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.2.3) |
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.0"
__version__ = "0.3.1"
2 changes: 1 addition & 1 deletion rdsa_utils/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ class TableNotFoundError(Exception):


class InvalidBucketNameError(Exception):
"""Custom exception to raise when an AWS S3 bucket name is invalid."""
"""Custom exception to raise when an AWS S3 or GCS bucket name is invalid."""

pass
Loading

0 comments on commit bd6d295

Please sign in to comment.