Skip to content

Commit

Permalink
Release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
techalchemy committed Mar 3, 2019
1 parent 9e5a707 commit 0f3997b
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 7 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
1.2.0 (2019-03-02)
==================

Features & Improvements
-----------------------

- Dramatically improved performance and stability. `#51 <https://github.com/sarugaku/pythonfinder/issues/51>`_

- Added typehints and refactored mixins, updated shims to only attempt to remove themselves if they detect their respectve installations (fixes Hynek's issue). `#52 <https://github.com/sarugaku/pythonfinder/issues/52>`_


Bug Fixes
---------

- Add resilient parsing to look only for ``major.minor(.patch)?`` as a fallback parser and allow more graceful continuation if a path is not a real path to python. `#40 <https://github.com/sarugaku/pythonfinder/issues/40>`_

- Added typehints and refactored mixins, updated shims to only attempt to remove themselves if they detect their respectve installations (fixes Hynek's issue). `#52 <https://github.com/sarugaku/pythonfinder/issues/52>`_

- Fixed a bug which prevented parsing of numeric versions as inputs to pythonfinder. `#59 <https://github.com/sarugaku/pythonfinder/issues/59>`_

- Windows path discovery now works correctly and does not attempt to assign cached properties. `#61 <https://github.com/sarugaku/pythonfinder/issues/61>`_


1.1.10 (2018-11-22)
===================

Expand Down
1 change: 0 additions & 1 deletion news/40.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/51.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/52.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/52.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/59.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion news/61.bugfix.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/pythonfinder/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from .models import SystemPath, WindowsFinder
from .pythonfinder import Finder

__version__ = "1.1.11.dev0"
__version__ = "1.2.0"


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 0f3997b

Please sign in to comment.