From f407f6410a77be65311c1976510f0f4ecc991f24 Mon Sep 17 00:00:00 2001 From: epwalsh Date: Wed, 20 Nov 2024 13:06:10 -0800 Subject: [PATCH] Prepare for release v1.6.4 --- CHANGELOG.md | 6 ++++++ cached_path/version.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 49325f4..03a0583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +## [v1.6.4](https://github.com/allenai/cached_path/releases/tag/v1.6.4) - 2024-11-20 + +### Added + +- Added support for new version of huggingface-hub. + ## [v1.6.3](https://github.com/allenai/cached_path/releases/tag/v1.6.3) - 2024-06-20 ### Added diff --git a/cached_path/version.py b/cached_path/version.py index f02dfde..3dc77ec 100644 --- a/cached_path/version.py +++ b/cached_path/version.py @@ -4,7 +4,7 @@ _MINOR = "6" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "3" +_PATCH = "4" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = os.environ.get("CACHED_PATH_VERSION_SUFFIX", "")