summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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('.')