aboutsummaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-03-11 10:40:18 -0400
committerDrew DeVault <sir@cmpwn.com>2019-03-11 10:40:18 -0400
commitc9137cba691b57c3eaf3ff94f9bf8e623f66ccc5 (patch)
tree8bcd9b78c2f388490e4d94d721885415acbe5b11 /meson.build
parentaa5c3699109f866b1002621f48a11c54562eb572 (diff)
Update version to 0.5.0
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 304e6330..dc4ff248 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
project(
'wlroots',
'c',
- version: '0.4.1',
+ version: '0.5.0',
license: 'MIT',
meson_version: '>=0.48.0',
default_options: [
@@ -14,7 +14,7 @@ project(
# Format of so_version is CURRENT, REVISION, AGE.
# See: https://autotools.io/libtool/version.html
# for a reference about clean library versioning.
-so_version = ['1', '2', '0']
+so_version = ['2', '3', '1']
add_project_arguments([
'-DWLR_SRC_DIR="@0@"'.format(meson.current_source_dir()),