diff --git a/NEWS.asciidoc b/NEWS.asciidoc index 76de4b24..8abc8ed7 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,6 +1,10 @@ [[news]] === News +* _3 July, 2020:_ There is a new stable release +https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.10.1/[PySolFC +v2.10.1]. New in this release: +** Bug fix: allow to use the freecell_solver.py Python bindings without needing to have the "fc-solve" executable in the path * _22 June, 2020:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.10.0/[PySolFC v2.10.0]. New in this release: diff --git a/pysollib/settings.py b/pysollib/settings.py index 9c27c0d2..59437ff8 100644 --- a/pysollib/settings.py +++ b/pysollib/settings.py @@ -32,7 +32,7 @@ PACKAGE = 'PySolFC' TITLE = 'PySol' PACKAGE_URL = 'http://pysolfc.sourceforge.net/' -VERSION_TUPLE = (2, 10, 0) +VERSION_TUPLE = (2, 10, 1) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)