summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <pwithnall@endlessos.org>2021-02-11 21:42:04 +0000
committerPhilip Withnall <pwithnall@endlessos.org>2021-02-12 10:46:54 +0000
commit29f08d753e3d86bbd69e0bc76e9d86bece039d26 (patch)
tree76b872106a90a6854919740052cdda3c4dd4e4ff
parentc7553c4101931de4d2ac45bfbf50300fdbf85a19 (diff)
downloadlibgdata-29f08d753e3d86bbd69e0bc76e9d86bece039d26.tar.gz
build: Bump version to 0.18.0
The release commit accidentally wasn’t pushed to origin/master straight after the release, so has instead had to land on a branch (`libgdata-0-18`). Pull in the NEWS and version changes to `master` so that they are in sync. Signed-off-by: Philip Withnall <pwithnall@endlessos.org>
-rw-r--r--NEWS16
-rw-r--r--meson.build8
2 files changed, 20 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index a9039247..98e0631a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,19 @@
+Overview of changes from libgdata 0.17.13 to libgdata 0.18.0
+============================================================
+
+* Add support for Team Drives (work by Ondrej Holy) (#25)
+
+* Bugs fixed:
+ - #25 Team drives API support needed
+
+* Translation updates:
+ - Bokmål, Norwegian
+ - Catalan
+ - Greek, Modern (1453-)
+ - Portuguese
+ - Slovak
+
+
Overview of changes from libgdata 0.17.12 to libgdata 0.17.13
=============================================================
diff --git a/meson.build b/meson.build
index d4e623c3..4ac9a38a 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'libgdata', 'c',
- version: '0.17.13',
+ version: '0.18.0',
license: 'LGPL2.1+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.50.0',
@@ -34,9 +34,9 @@ gdata_include_subdir = gdata_name / 'gdata'
# 4. If any interfaces have been removed or changed since the last public release, then set age to 0.
#
# Note that versioning started at 2:0:0 to ensure no conflicts with e-d-s' libgdata library, whose maximum version was 1:0:0
-current = 27
-revision = 2
-age = 5
+current = 28
+revision = 0
+age = 6
gdata_soversion = '@0@.@1@.@2@'.format(current - age, age, revision)
top_inc_dir = include_directories('.')