From 79a73679e5ce63db982a13d87feca13effc41daf Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Tue, 16 Nov 2021 16:54:45 +0100 Subject: [PATCH] Release v2.4.14 --- CHANGELOG.md | 11 +++++++---- fs/_version.py | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 11d8330d..392fa744 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,18 +8,21 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## Unreleased + +## [2.4.14] - 2021-11-16 + ### Added -- Added `fs.copy.copy_file_if`, `fs.copy.copy_dir_if`, and `fs.copy.copy_fs_if`. +- Added `fs.copy.copy_file_if`, `fs.copy.copy_dir_if`, and `fs.copy.copy_fs_if`. Closes [#458](https://github.com/PyFilesystem/pyfilesystem2/issues/458). - Added `fs.base.FS.getmodified`. - + ### Changed - FTP servers that do not support the MLST command now try to use the MDTM command to - retrieve the last modification timestamp of a resource. + retrieve the last modification timestamp of a resource. Closes [#456](https://github.com/PyFilesystem/pyfilesystem2/pull/456). - + ### Fixed - Fixed performance bugs in `fs.copy.copy_dir_if_newer`. Test cases were adapted to catch those bugs in the future. diff --git a/fs/_version.py b/fs/_version.py index 8f74ece1..ecd8e424 100644 --- a/fs/_version.py +++ b/fs/_version.py @@ -1,3 +1,3 @@ """Version, used in module and setup.py. """ -__version__ = "2.4.13" +__version__ = "2.4.14"