Skip to content

Commit 01d7243

Browse files
committed
Increased version to 2.3.2 and add changes to changelog.
1 parent 0f1dc5a commit 01d7243

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/Config.cmake)
4040
# setup version numbers
4141
set(VERSION_MAJOR 2)
4242
set(VERSION_MINOR 3)
43-
set(VERSION_PATCH 1)
43+
set(VERSION_PATCH 2)
4444

4545
# add the SFML header path
4646
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)

changelog.txt

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
SFML 2.3.2
2+
==========
3+
4+
Also available on the website: http://www.sfml-dev.org/changelog.php#sfml-2.3.2
5+
6+
General
7+
=======
8+
9+
* Fixed an issue where FindSFML.cmake couldn't find older versions of SFML (#903)
10+
* Robust alCheck and glCheck macros (#917)
11+
* Fixed FindSFML.cmake to use the uppercase FLAC name (#923)
12+
* Added a CONTRIBUTING file so GitHub shows a message when creating a new issue (#932)
13+
14+
15+
Window
16+
======
17+
18+
Bugfixes
19+
--------
20+
* [Linux] Fixed an issue where the keypad's key weren't being detected (#910)
21+
* [Linux] Revert to Xlib event handling (#934)
22+
* [Linux] Fixed XK_* inconsistency in InpuImpl.cpp (#947)
23+
* [Linux] Fix _NET_WM_PING messages not being replied to properly (#947)
24+
25+
26+
Graphics
27+
========
28+
29+
Bugfixes
30+
--------
31+
* Fixed clear bug on RenderTextures (#915)
32+
* Fixed image file extension detection (#929, #930, #931)
33+
* Secure function against random data return (#935, #942)
34+
35+
136
SFML 2.3.1
237
==========
338

include/SFML/Config.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
////////////////////////////////////////////////////////////
3232
#define SFML_VERSION_MAJOR 2
3333
#define SFML_VERSION_MINOR 3
34-
#define SFML_VERSION_PATCH 1
34+
#define SFML_VERSION_PATCH 2
3535

3636

3737
////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)