diff --git a/NEWS.asciidoc b/NEWS.asciidoc index 750eda36..420037e4 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,6 +1,9 @@ [[news]] === News - +* _10 December, 2021:_ There is a new stable release +https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.14.1/[PySolFC +v2.14.1]. This release fixes a number of bugs, including one that causes +crashes for some users when opening the select game/cardset/table tile window. * _19 September, 2021:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.14.0/[PySolFC v2.14.0]. New in this release: diff --git a/pysollib/settings.py b/pysollib/settings.py index e7f14768..360696ab 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, 14, 0) +VERSION_TUPLE = (2, 14, 1) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)