Skip to content

Commit

Permalink
Release v0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
dombean committed Dec 13, 2024
1 parent 15ce132 commit ed223e9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 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.4.3
current_version = 0.4.4
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ and this project adheres to [semantic versioning](https://semver.org/spec/v2.0.0

### Added

### Changed

### Deprecated

### Fixed

### Removed

## [0.4.4] - 2024-12-13

### Added

### Changed
- Modified `insert_df_to_hive_table` function in `cdp/io/output.py`. Added support
for creating non-existent Hive tables, repartitioning by column or partition count,
Expand Down Expand Up @@ -504,6 +516,8 @@ and this project adheres to [semantic versioning](https://semver.org/spec/v2.0.0
> due to bugs in the GitHub Action `deploy_pypi.yaml`, which deploys to PyPI
> and GitHub Releases.
- rdsa-utils v0.4.4: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.4.4) |
[PyPI](https://pypi.org/project/rdsa-utils/0.4.4/)
- rdsa-utils v0.4.3: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.4.3) |
[PyPI](https://pypi.org/project/rdsa-utils/0.4.3/)
- rdsa-utils v0.4.2: [GitHub Release](https://github.com/ONSdigital/rdsa-utils/releases/tag/v0.4.2) |
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.4.3"
__version__ = "0.4.4"
4 changes: 2 additions & 2 deletions rdsa_utils/cdp/helpers/s3_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1141,12 +1141,12 @@ def write_csv(
Examples
--------
>>> s3_client = boto3.client('s3')
>>> client = boto3.client('s3')
>>> data = pd.DataFrame({
>>> 'column1': [1, 2, 3],
>>> 'column2': ['a', 'b', 'c']
>>> })
>>> write_csv(s3_client, 'my_bucket', data, 'path/to/file.csv')
>>> write_csv(client, 'my_bucket', data, 'path/to/file.csv')
True
"""
try:
Expand Down

0 comments on commit ed223e9

Please sign in to comment.