summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2022-08-24 10:43:05 +0200
committerBastien Nocera <hadess@hadess.net>2022-08-24 10:43:05 +0200
commit87bacdfe6bc3068bd4a5d11ee5e09a91c0de9b3c (patch)
treec63758839f5fc76ac65f3c95c30d95bb1d8d5b14
parentab2e8dac222a8efd68c874a9ffeadbbb34d33ad6 (diff)
downloadgnome-bluetooth-87bacdfe6bc3068bd4a5d11ee5e09a91c0de9b3c.tar.gz
42.342.3
-rw-r--r--NEWS4
-rw-r--r--meson.build6
2 files changed, 7 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 7abe4ae7..9e6f862d 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,7 @@
+ver 42.3:
+This version adds a new API for more precise adapter power state, and fixes
+a number of small UI problems in bluetooth-sendto.
+
ver 42.2:
This version fixes duplicate devices appearing when bluetoothd restarts, as well
as the discovery not being updated correctly in that same situation.
diff --git a/meson.build b/meson.build
index 4833302a..3fc26903 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'gnome-bluetooth', 'c',
- version: '42.2',
+ version: '42.3',
license: 'GPL2+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.58.0',
@@ -34,9 +34,9 @@ enable_gir = get_option('introspection')
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
-current = 14
+current = 15
revision = 0
-age = 1
+age = 2
lt_soversion = current - age
libversion = '@0@.@1@.@2@'.format(lt_soversion, age, revision)