diff --git a/CHANGELOG.md b/CHANGELOG.md index 529ee18..bfff91c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,12 @@ # Changelog -## Unreleased +## 2.2.0 - Add `post_copy_hook` and `on_skip_hook` to `collectfast.strategies.base.Strategy`. - Add `collectfast.strategies.filesystem.CachingFileSystemStrategy`. +- Fix a bug where files weren't properly closed when read for hashing. +- Fix a bug where gzip compression level was inconsistent with S3. ## 2.1.0 diff --git a/collectfast/__init__.py b/collectfast/__init__.py index 9aa3f90..8a124bf 100644 --- a/collectfast/__init__.py +++ b/collectfast/__init__.py @@ -1 +1 @@ -__version__ = "2.1.0" +__version__ = "2.2.0"