Skip to content

Commit e777f38

Browse files
SiegeLordExSiegeLord
authored andcommitted
Bump version to 5.2.2 (GIT)
1 parent 757e2bb commit e777f38

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ option(WANT_GLES2 "Compile with GLES2 support" ON)
4141
option(ALLEGRO_SDL "Build using the SDL backend (experimental)" OFF)
4242
option(WANT_STATIC_RUNTIME "Whether or not to link the C and C++ runtimes statically (currently only implemented for MSVC)" OFF)
4343

44-
set(ALLEGRO_VERSION 5.2.1)
44+
set(ALLEGRO_VERSION 5.2.2)
4545
string(REGEX MATCH "^[0-9]+[.][0-9]+" ALLEGRO_SOVERSION ${ALLEGRO_VERSION})
4646
string(REPLACE "." "" ALLEGRO_DLL_SHORTVER ${ALLEGRO_SOVERSION})
4747

include/allegro5/base.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
#define ALLEGRO_VERSION 5
5757
#define ALLEGRO_SUB_VERSION 2
58-
#define ALLEGRO_WIP_VERSION 1
58+
#define ALLEGRO_WIP_VERSION 2
5959

6060
#ifdef ALLEGRO_UNSTABLE
6161
#define ALLEGRO_UNSTABLE_BIT 1 << 31
@@ -73,9 +73,9 @@
7373
*/
7474
#define ALLEGRO_RELEASE_NUMBER 0
7575

76-
#define ALLEGRO_VERSION_STR "5.2.1 (GIT)"
76+
#define ALLEGRO_VERSION_STR "5.2.2 (GIT)"
7777
#define ALLEGRO_DATE_STR "2016"
78-
#define ALLEGRO_DATE 20160330 /* yyyymmdd */
78+
#define ALLEGRO_DATE 20160731 /* yyyymmdd */
7979
#define ALLEGRO_VERSION_INT \
8080
((ALLEGRO_VERSION << 24) | (ALLEGRO_SUB_VERSION << 16) | \
8181
(ALLEGRO_WIP_VERSION << 8) | ALLEGRO_RELEASE_NUMBER | \

0 commit comments

Comments
 (0)