Skip to content

Commit 54d3854

Browse files
committed
v0.3.0 — Better symlink support
- 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
1 parent 019b027 commit 54d3854

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
v0.3.0 (in development)
2-
-----------------------
1+
v0.3.0 (2018-06-28)
2+
-------------------
33
- Handling of symbolic links is changed: Now, if `in_place` is asked to operate
44
on a symlink `link.txt` that points to `realfile.txt`, it will act as though
55
it was asked to operate on `realfile.txt` instead, and the path `link.txt`

in_place.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Visit <https://github.com/jwodder/inplace> for more information.
1010
"""
1111

12-
__version__ = '0.3.0.dev1'
12+
__version__ = '0.3.0'
1313
__author__ = 'John Thorvald Wodder II'
1414
__author_email__ = '[email protected]'
1515
__license__ = 'MIT'

0 commit comments

Comments
 (0)