From bb8785e76b602766af86a6095803442034ac8802 Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Mon, 22 Jun 2020 13:28:22 +0300 Subject: [PATCH] prepare for the new release --- NEWS.asciidoc | 8 ++++++++ pysollib/settings.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/NEWS.asciidoc b/NEWS.asciidoc index a301aca1..76de4b24 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,6 +1,14 @@ [[news]] === News +* _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: +** Fix moving cards in the Scorpion Tail game. +** Make use of https://pypi.org/project/pysol-cards/[the pysol-cards PyPI module] +** One can optionally load the Freecell Solver and the Black Hole Solver using their DLLs. +** Test Windows Version in the installer: https://github.com/shlomif/PySolFC/issues/161 +** Pause when showing statistics: https://github.com/shlomif/PySolFC/pull/162 * _5 March, 2020:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.8.0/[PySolFC v2.8.0]. New in this release: diff --git a/pysollib/settings.py b/pysollib/settings.py index 3c59872c..9c27c0d2 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, 8, 0) +VERSION_TUPLE = (2, 10, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)