From a34e1690310cafcd5c977a5a68004f7c23c1e6be Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Fri, 28 Feb 2020 16:54:34 +0200 Subject: [PATCH] Prepare for 2.8.0 release. See https://github.com/shlomif/PySolFC/issues/151 . Not releasing yet. --- NEWS.asciidoc | 8 ++++++++ pysollib/settings.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/NEWS.asciidoc b/NEWS.asciidoc index 0e39f757..bbebba9f 100644 --- a/NEWS.asciidoc +++ b/NEWS.asciidoc @@ -1,6 +1,14 @@ [[news]] === News +* _TODO, 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: +** Better kivy/Android support +** Using ttk and configobj as shipped in the python dist (instead of forked versions) +** Requiring https://pypi.org/project/attrs/[attrs] and https://pypi.org/project/pysol-cards/[pysol-cards] from PyPI +** Added tests, bug fixes and refactorings. +** Add the +-g+ and +--deal+ command line options. * _25 April, 2019:_ There is a new stable release https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.6.4/[PySolFC v2.6.4]. New in this release: diff --git a/pysollib/settings.py b/pysollib/settings.py index e026dc74..3c59872c 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, 6, 4) +VERSION_TUPLE = (2, 8, 0) VERSION = '.'.join(map(str, VERSION_TUPLE)) # Tk windowing system (auto set up in init.py)