aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2018-05-18 16:04:18 +0200
committerMichael Vetter <jubalh@iodoru.org>2018-05-18 16:04:18 +0200
commit5cfbb53f6c837bef2ebfafd778b08840f2e33704 (patch)
tree79be3e93c632bba3dcfde08c8b008b83f98231fe /src
parentfb4265f64659a50a5a86f9f283e7468b7998c60f (diff)
downloadraylib-5cfbb53f6c837bef2ebfafd778b08840f2e33704.tar.gz
raylib-5cfbb53f6c837bef2ebfafd778b08840f2e33704.zip
Increase API version
Please do this whenever necessary. And adapt it before releasing a new RC. The RC should already have the correct one.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/CMakeLists.txt2
-rw-r--r--src/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index e8379ab0..458b9606 100755
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -3,7 +3,7 @@ project(raylib)
include(GNUInstallDirs)
set(PROJECT_VERSION 2.0.0)
-set(API_VERSION 1)
+set(API_VERSION 2)
set(RAYLIB raylib) # Name of the generated library
include("CMakeOptions.txt")
diff --git a/src/Makefile b/src/Makefile
index 582daf49..d327c2d1 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -43,7 +43,7 @@
# Define required raylib variables
RAYLIB_VERSION = 2.0.0
-RAYLIB_API_VERSION = 1
+RAYLIB_API_VERSION = 2
# See below for alternatives.
RAYLIB_PATH = ..