From 54d3854b842d6e90e7a4751e35aef65c20e11b86 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Thu, 28 Jun 2018 15:09:33 +0000 Subject: [PATCH] =?UTF-8?q?v0.3.0=20=E2=80=94=20Better=20symlink=20support?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Handling of symbolic links is changed: Now, if `in_place` is asked to operate on a symlink `link.txt` that points to `realfile.txt`, it will act as though it was asked to operate on `realfile.txt` instead, and the path `link.txt` will only be used when combining with `backup_ext` to construct a backup file path - Drop support for Python 2.6 and 3.3 --- CHANGELOG.md | 4 ++-- in_place.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae02993..383755a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.3.0 (in development) ------------------------ +v0.3.0 (2018-06-28) +------------------- - Handling of symbolic links is changed: Now, if `in_place` is asked to operate on a symlink `link.txt` that points to `realfile.txt`, it will act as though it was asked to operate on `realfile.txt` instead, and the path `link.txt` diff --git a/in_place.py b/in_place.py index f60a64d..59336ec 100644 --- a/in_place.py +++ b/in_place.py @@ -9,7 +9,7 @@ Visit for more information. """ -__version__ = '0.3.0.dev1' +__version__ = '0.3.0' __author__ = 'John Thorvald Wodder II' __author_email__ = 'inplace@varonathe.org' __license__ = 'MIT'