diff --git a/CHANGELOG.md b/CHANGELOG.md index 860df0260..a47b74c30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed +## [0.4.17] - 2023-06-15 +### Fixed +- Fixed issue with `tzlocal` for O365 package + ## [0.4.16] - 2023-06-15 ### Added diff --git a/requirements.txt b/requirements.txt index ffc8e6b14..ffac39741 100644 --- a/requirements.txt +++ b/requirements.txt @@ -37,8 +37,9 @@ PyMySQL==1.0.2 paramiko==2.11.0 sshtunnel==0.4.0 databricks-connect==10.4.0b0 +tzlocal==4.3 O365==2.0.18.1 aiohttp==3.8.1 aiolimiter==1.0.0 protobuf>=3.19.0, <3.20 -avro-python3==1.10.2 \ No newline at end of file +avro-python3==1.10.2 diff --git a/tests/test_viadot.py b/tests/test_viadot.py index 18ea10d92..31b71febf 100644 --- a/tests/test_viadot.py +++ b/tests/test_viadot.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.4.16" + assert __version__ == "0.4.17" diff --git a/viadot/__init__.py b/viadot/__init__.py index 6ff6db180..ac1552129 100644 --- a/viadot/__init__.py +++ b/viadot/__init__.py @@ -1 +1 @@ -__version__ = "0.4.16" +__version__ = "0.4.17"