diff --git a/CHANGELOG.md b/CHANGELOG.md index d5d9effb7db..0fb09823ae8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,12 @@ and this project adheres to ### Security +## [4.9.6] - 2024-06-04 + +### Added + +- Full support for Python 3.12. + ## [4.9.5] - 2024-05-30 ### Added diff --git a/tensorflow_datasets/version.py b/tensorflow_datasets/version.py index 70027706681..d8808bc7212 100644 --- a/tensorflow_datasets/version.py +++ b/tensorflow_datasets/version.py @@ -25,7 +25,7 @@ # We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html) _MAJOR_VERSION = '4' _MINOR_VERSION = '9' -_PATCH_VERSION = '5' +_PATCH_VERSION = '6' __version__ = ( '.'.join([ diff --git a/tensorflow_datasets/version_stable.py b/tensorflow_datasets/version_stable.py index e1544a5adf2..7739b8bfba1 100644 --- a/tensorflow_datasets/version_stable.py +++ b/tensorflow_datasets/version_stable.py @@ -21,7 +21,7 @@ # We follow Semantic Versioning (https://semver.org/spec/v2.0.0.html) _MAJOR_VERSION = '4' _MINOR_VERSION = '9' -_PATCH_VERSION = '5' +_PATCH_VERSION = '6' __version__ = '.'.join([ _MAJOR_VERSION,