From 900ba039791d46d766d86f48cddbe0b6ffa9d61e Mon Sep 17 00:00:00 2001 From: Joe R Date: Sun, 19 Sep 2021 14:26:09 -0400 Subject: [PATCH] Set the version to 2.14.0. --- NEWS.asciidoc | 9 +++++++++ pysollib/settings.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS.asciidoc b/NEWS.asciidoc index a4245800..750eda36 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,6 +1,15 @@ [[news]] === News +* _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: +** 16 new games +** Support for Python 3.10 (Minimum requirement is still Python 2.7) +** A new macOS package. +** Enhancements to the tree select dialogs for selecting games, cardsets, and table tiles. +** Further additions/improvements to the documentation. +** Many bugfixes and cleanups. * _11 July, 2021:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.12.0/[PySolFC v2.12.0]. New in this release: diff --git a/pysollib/settings.py b/pysollib/settings.py index 7dce9199..e7f14768 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, 12, 0) +VERSION_TUPLE = (2, 14, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)