diff options
author | Aleksander Morgado <aleksandermj@chromium.org> | 2022-10-27 20:03:33 +0000 |
---|---|---|
committer | Aleksander Morgado <aleksandermj@chromium.org> | 2022-10-27 20:03:33 +0000 |
commit | d4fcb2a57c978b2ef9d819d32c54c1695582e32b (patch) | |
tree | 4169461a6d5262d973522e3f5ed1e3871cd2438c /meson.build | |
parent | 1532545efa128d9f39e22db445dc10766db99fbd (diff) |
release: bump version to 1.20.0
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson.build b/meson.build index fd85f4a1..f4045877 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,7 @@ project( 'ModemManager', 'c', - version: '1.19.900', + version: '1.20.0', license: 'GPL2', default_options: [ 'buildtype=debugoptimized', @@ -40,9 +40,9 @@ mm_glib_pkgincludedir = mm_includedir / mm_glib_name # - Otherwise, increment c and zero r. # - If the interface has grown (that is, the new library is compatible with old code), increment a. # - If the interface has changed in an incompatible way (that is, functions have changed or been removed), then zero a. -current = 8 +current = 9 revision = 0 -age = 8 +age = 9 mm_glib_version = '@0@.@1@.@2@'.format(current - age, age, revision) mm_gir_version = '1.0' |