From 4a406fa94bd855c848217ce926b89e33356ab3ad Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 25 Sep 2017 12:15:48 +0200 Subject: [PATCH] Increment version in meson build file Increment raylib version and so lib version number. --- meson.build | 2 +- src/meson.build | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 12b48a74..c85905cc 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('raylib', 'c', version: '1.7.0', +project('raylib', 'c', version: '1.8.0', license: 'zlib', meson_version: '>= 0.39.1', default_options : 'c_std=gnu99') diff --git a/src/meson.build b/src/meson.build index bdffb98e..12385fc9 100644 --- a/src/meson.build +++ b/src/meson.build @@ -18,5 +18,5 @@ raylib = library('raylib', source_c, dependencies : [ glfw_dep, gl_dep, openal_dep, m_dep, x11_dep], install : true, - version : '1.7.0') + version : '1.8.0')