From 92a07dcc2b817e6bbe178eb86acc7e289c192b49 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Fri, 3 Jul 2020 15:04:55 +0300 Subject: [PATCH] mint new release 2.10.1 --- NEWS.asciidoc | 4 ++++ pysollib/settings.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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)