Skip to content
This repository was archived by the owner on Oct 9, 2021. It is now read-only.

Commit a8d08e5

Browse files
Bumped to 0.2.1
1 parent d3f545e commit a8d08e5

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

CHANGELOG.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
0.2.1 (12/08/2012):
2+
3+
- RenderWindow.display() doesn't release the GIL anymore, as it would cause
4+
segmentation faults when integrating with PyQt.
5+
- Fixed crashes when comparing Time objects with None.
6+
- Removed the default font, since it was removed in C++ SFML. If you still
7+
encounter crashes at the end of the program on Windows, this should fix it.
8+
19
0.2 (07/20/2012):
210

311
- Event.BACK has been renamed to Event.BACK_SPACE, to fit with the C++ SFML

doc/sphinx/source/changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ Changelog
3434
.. currentmodule:: sfml
3535

3636

37+
0.2.1 (12/08/2012):
38+
39+
- :meth:`RenderWindow.display()` doesn't release the GIL anymore, as it would
40+
cause segmentation faults when integrating with PyQt.
41+
- Fixed crashes when comparing :class:`Time` objects with ``None``.
42+
- Removed the default font, since it was removed in C++ SFML. If you still
43+
encounter crashes at the end of the program on Windows, this should fix it.
44+
3745
0.2 (07/20/2012):
3846

3947
- ``Keyboard.BACK`` has been renamed to :attr:`Keyboard.BACK_SPACE`, to fit with

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def src(path):
7171

7272
kwargs = dict(name='pySFML',
7373
ext_modules=ext_modules,
74-
version='0.2',
74+
version='0.2.1',
7575
description='A Python binding for SFML 2',
7676
long_description=long_description,
7777
author=u'Bastien Léonard',

setup3k.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def src(path):
7171

7272
kwargs = dict(name='pySFML',
7373
ext_modules=ext_modules,
74-
version='0.2',
74+
version='0.2.1',
7575
description='A Python binding for SFML 2',
7676
long_description=long_description,
7777
author='Bastien Léonard',

0 commit comments

Comments
 (0)