summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2020-02-27 16:52:11 +0000
committerPhilip Withnall <withnall@endlessm.com>2020-02-27 16:52:11 +0000
commit6fd85102e7dcf7414000264a263465ba5cb894e4 (patch)
tree6dcd1a3ab6ddcb7b8581bd5ce5cb260d079c7b3d
parent290f6a905f7f16fdf72f45435eeaadb4ad56828c (diff)
downloadlibgdata-6fd85102e7dcf7414000264a263465ba5cb894e4.tar.gz
Release version 0.17.120.17.12
Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--NEWS42
-rw-r--r--meson.build4
2 files changed, 44 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 4d467645..30b6367a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,45 @@
+Overview of changes from libgdata 0.17.11 to libgdata 0.17.12
+=============================================================
+
+* Make OAuth 1 support optional and disabled by default; this makes the `oauth`
+ dependency optional on `-Doauth1=enabled` (#1)
+
+* Bugs fixed:
+ - #1 Consider loosening the liboauth dependency
+ - #23 Authentication errors with Google Drive
+ - #36 Clarify license in meson.build
+
+* Translation updates:
+ - Basque
+ - Catalan
+ - Chinese (Taiwan)
+ - Croatian
+ - Czech
+ - Danish
+ - Dutch
+ - Finnish
+ - French
+ - Friulian
+ - Galician
+ - German
+ - Hungarian
+ - Indonesian
+ - Italian
+ - Japanese
+ - Korean
+ - Latvian
+ - Lithuanian
+ - Malay
+ - Polish
+ - Portuguese (Brazil)
+ - Romanian
+ - Serbian
+ - Slovenian
+ - Spanish
+ - Swedish
+ - Turkish
+
+
Overview of changes from libgdata 0.17.10 to libgdata 0.17.11
=============================================================
diff --git a/meson.build b/meson.build
index f38ff7f6..838d6f53 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,6 @@
project(
'libgdata', 'c',
- version: '0.17.11',
+ version: '0.17.12',
license: 'LGPL2.1+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.50.0',
@@ -35,7 +35,7 @@ gdata_include_subdir = gdata_name / 'gdata'
#
# 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 = 0
+revision = 1
age = 5
gdata_soversion = '@0@.@1@.@2@'.format(current - age, age, revision)