Skip to content

Commit

Permalink
2.21.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
joeraz committed Jul 11, 2023
1 parent 595f681 commit 9237c30
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
7 changes: 7 additions & 0 deletions NEWS.asciidoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
[[news]]
=== News
* _10 July, 2023:_ There is a new beta release
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.21.0/[PySolFC
v2.21.0]. New in this release:
** Ten new games.
** Compatibility with Pillow 10.0.
** Several new display options.
** Other bugfixes and enhancements.
* _16 April, 2023:_ There is a new stable release
https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.1/[PySolFC
v2.20.1]. New in this release:
Expand Down
27 changes: 27 additions & 0 deletions html-src/news.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
<h1>What's New?</h1>
<ul>
<li>
<p><em>10 July, 2023:</em> There is a new beta release
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.21.0/">PySolFC
v2.21.0</a>. New in this release:</p>
<ul>
<li>
<p>
Ten new games.
</p>
</li>
<li>
<p>
Compatibility with Pillow 10.0.
</p>
</li>
<li>
<p>
Several new display options.
</p>
</li>
<li>
<p>
Bugfixes and enhancements.
</p>
</li>
</ul>
</li>
<li>
<p><em>16 April, 2023:</em> There is a new stable release
<a href="https://sourceforge.net/projects/pysolfc/files/PySolFC/PySolFC-2.20.1/">PySolFC
v2.20.1</a>. New in this release:</p>
Expand Down
2 changes: 1 addition & 1 deletion pysollib/gamedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ def _callback(gi, gt=game_type):
('fc-2.14', tuple(range(811, 827))),
('fc-2.15', tuple(range(827, 855)) + tuple(range(22400, 22407))),
('fc-2.20', tuple(range(855, 897))),
('dev', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
('fc-2.21', tuple(range(897, 900)) + tuple(range(11014, 11017)) +
tuple(range(13160, 13163)) + (16682,))
)

Expand Down
2 changes: 1 addition & 1 deletion pysollib/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def n_(x): # for gettext
TITLE = 'PySol'
PACKAGE_URL = 'http://pysolfc.sourceforge.io/'

VERSION_TUPLE = (2, 20, 1)
VERSION_TUPLE = (2, 21, 0)
VERSION = '.'.join(map(str, VERSION_TUPLE))

# Tk windowing system (auto set up in init.py)
Expand Down

0 comments on commit 9237c30

Please sign in to comment.