Skip to content

Commit

Permalink
v0.3.0 — Better symlink support
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
jwodder committed Jun 28, 2018
1 parent 019b027 commit 54d3854
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion in_place.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Visit <https://github.com/jwodder/inplace> for more information.
"""

__version__ = '0.3.0.dev1'
__version__ = '0.3.0'
__author__ = 'John Thorvald Wodder II'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down

0 comments on commit 54d3854

Please sign in to comment.