From 3c605a1b5336d835e7924a831f64b87eb377d0cc Mon Sep 17 00:00:00 2001 From: Alessio Bogon Date: Tue, 6 Apr 2021 17:45:18 +0200 Subject: [PATCH] Add CHANGELOG entries --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 53f329d..c1dd6eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## Unreleased +- Avoid `ResourceWarning: unclosed file <...>` warning by keeping a strong reference to the lock files. Lock files were weakly referenced on purpose, so that they could stay alive until the interpreter decides to remove them. +- Drop support for python 2.7 and 3.5. Only python >= 3.6 is supported now. ## 0.2.0 - Removed logic that falls back to copying a file when `file_movable=True` but the file does not appear to be movable. Do not try to be smart.