summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Catanzaro <mcatanzaro@redhat.com>2022-07-15 13:40:25 -0500
committerMichael Catanzaro <mcatanzaro@redhat.com>2022-07-15 13:46:08 -0500
commit9d06f5841f0aca52a458db197cb904819e448911 (patch)
treef2c7e5f6c32b8eb568d77714755e56c2727e9be9
parentabde4bcaf0219fdb17ec04e5e4e6434268be356b (diff)
downloadcheese-9d06f5841f0aca52a458db197cb904819e448911.tar.gz
Prepare 43.alpha43.alpha
-rw-r--r--NEWS4
-rw-r--r--data/org.gnome.Cheese.appdata.xml.in3
-rw-r--r--meson.build5
3 files changed, 9 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 3c478509..b9331a38 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,10 @@
ChangeLog for Cheese
--------------------
+version 43.alpha
+
+ - TODO
+
version 41.0
- Allow headerbar to appear on all desktops
Removed gtk_dialogs_use_header() and accompanying code to allow the
diff --git a/data/org.gnome.Cheese.appdata.xml.in b/data/org.gnome.Cheese.appdata.xml.in
index dfc408d3..b3fa445d 100644
--- a/data/org.gnome.Cheese.appdata.xml.in
+++ b/data/org.gnome.Cheese.appdata.xml.in
@@ -39,6 +39,9 @@
<translation type="gettext">cheese</translation>
<content_rating type="oars-1.1"/>
<releases>
+ <release version="43~alpha" date="2022-07-15">
+ <url>https://gitlab.gnome.org/GNOME/cheese/raw/43.alpha/NEWS</url>
+ </release>
<release version="41.1" date="2021-11-01">
<url>https://gitlab.gnome.org/GNOME/cheese/raw/41.1/NEWS</url>
</release>
diff --git a/meson.build b/meson.build
index 6a758219..2cda4b7a 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'cheese', ['c', 'vala'],
- version: '41.0',
+ version: '43.alpha',
license: 'GPL2',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.58.0',
@@ -11,7 +11,6 @@ cheese_name = meson.project_name()
cheese_version = meson.project_version()
version_array = cheese_version.split('.')
cheese_major_version = version_array[0].to_int()
-cheese_minor_version = version_array[1].to_int()
#cheese_api_version = cheese_major_version.to_string() + '.0'
cheese_api_version = '3.0'
@@ -36,7 +35,7 @@ cheese_namespace = 'org.gnome.Cheese'
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
current = 8
-revision = 16
+revision = 17
age = 0
libcheese_version = '@0@.@1@.@2@'.format(current - age, age, revision)