diff options
author | Jordan Petridis <jordan@centricular.com> | 2022-01-12 17:49:00 +0200 |
---|---|---|
committer | Jordan Petridis <jordan@centricular.com> | 2022-01-12 17:49:33 +0200 |
commit | f4d96fba870f72b76963d48f5c5022dc368fdc8b (patch) | |
tree | 7e54aae6d266c06707e007e8a7ddc12a4660ac36 | |
parent | e982dc2f9c2054896b8f0ea57082c27b0229e4ea (diff) | |
download | gnome-desktop-f4d96fba870f72b76963d48f5c5022dc368fdc8b.tar.gz |
42.alpha.142.alpha.1
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | meson.build | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,4 +1,10 @@ ============ +Version 42.alpha.1 +============ + +- build: fix soversion in libgnome-desktop-4 + +============ Version 42.alpha ============ diff --git a/meson.build b/meson.build index 2805bc16..16830f43 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('gnome-desktop', 'c', meson_version: '>= 0.56.2', - version: '42.alpha', + version: '42.alpha.1', license: ['GPL-2.0-or-later', 'LGPL-2.1-or-later'], default_options: [ 'c_std=gnu99', @@ -17,7 +17,7 @@ project('gnome-desktop', 'c', # to 0. When bumping the second version, set the third one to zero. # # A lot easier than libtool, right? -libversion = '1.0.0' +libversion = '1.0.1' soversion = libversion.split('.')[0] # Compatibility versions for libgnome-desktop-3 |