From da9da2ded57fce6b3fc9a91f7332784b58778dc1 Mon Sep 17 00:00:00 2001 From: Daniel Espinosa Date: Thu, 4 Jul 2019 11:04:33 -0500 Subject: [PATCH] Release 0.18.0 Updated NEWS for new translations Fixes on documentation generation. --- NEWS | 7 ++++--- configure.ac | 13 +++++++------ gxml/meson.build | 10 +++++----- meson.build | 2 +- 4 files changed, 17 insertions(+), 15 deletions(-) diff --git a/NEWS b/NEWS index 94531d1f..e1eb573d 100644 --- a/NEWS +++ b/NEWS @@ -1,8 +1,7 @@ =============== Version 0.18.0 =============== -* GomDocument now can detect default root property, instantiate it - on reading +* GomDocument now can detect default a root property and instantiate it on reading * New API in DomDocument and DomElement for read/write operations * New serialization methods for DomElement and DomDocument interfaces * Now all GomElement attributes are available from 'attributes' property, @@ -22,9 +21,11 @@ Version 0.18.0 German by Tim Sabsch Spanish by Daniel Mustieles Swedish by Anders Jonsson - Brazilian by Rafael Fontenelle + Brazilian Portuguese by Rafael Fontenelle Czech by Marek Černocký Polish by Piotr Drąg + French by BZHDeveloper + Danish by Ask Hjorth Larsen =============== diff --git a/configure.ac b/configure.ac index 7f8b9561..c7be6dc3 100644 --- a/configure.ac +++ b/configure.ac @@ -11,7 +11,7 @@ # Release Version for API related changes m4_define([project_major_version], [0]) -m4_define([project_minor_version], [17]) +m4_define([project_minor_version], [18]) m4_define([project_micro_version], [0]) m4_define([project_nano_version], [0]) @@ -21,9 +21,9 @@ m4_define([project_nano_version], [0]) # Increase the current value whenever an interface has been added, removed or changed. # Increase the age value only if the changes made to the ABI are backward compatible. # Reset current to 1 and revision and age to 0 if library's name is changed -m4_define([project_lt_current], [2]) -m4_define([project_lt_revision], [1]) -m4_define([project_lt_age], [1]) +m4_define([project_lt_current], [3]) +m4_define([project_lt_revision], [2]) +m4_define([project_lt_age], [0]) # Combine numbers to various version variables (different uses) # Display the nano_version only if it's not '0' @@ -35,7 +35,7 @@ m4_define([project_full_version], # You should set project_released to one in order to mark this as a released version # and to avoid date on version number -m4_define(project_released, [0]) +m4_define(project_released, [1]) m4_define([project_maybe_datestamp], m4_if(project_released, [1], [], [m4_esyscmd([date +.%Y%m%d | tr -d '\n\r'])])) @@ -223,7 +223,7 @@ AM_CONDITIONAL(ENABLE_PERFORMANCE_TESTS, [test $performance = yes]) tnode_tests=no AC_ARG_ENABLE(test_tnode, AS_HELP_STRING([--enable-test-tnode], [Enable Tests for deprecated TNode classes [default=no]]), - [docs=$enableval], [docs="no"]) + [tnode_tests=$enableval], [tnode_tests="no"]) AM_CONDITIONAL([ENABLE_TNODE_TESTS], [test x$tnode_tests = xyes]) dnl Check Cross Compile @@ -286,6 +286,7 @@ echo " GObject Introspection: $found_introspection" echo " Documentation: ${docs}" echo " DevHelp Docs: ${build_devhelp}" echo " Enable Performance Test: $performance" +echo " Enable TNode Test: $tnode_tests" echo " Debug: $debug" echo " Platform: $host" echo " valac: $have_vala" diff --git a/gxml/meson.build b/gxml/meson.build index 1d37f450..87f4384c 100644 --- a/gxml/meson.build +++ b/gxml/meson.build @@ -138,16 +138,16 @@ inc_libh_dep = declare_dependency (include_directories : inc_libh) # LT_VERSION for ABI related changes # From: https://autotools.io/libtool/version.html -# This rules applies to Meson 0.43 +# This rules applies to Meson 0.43 and newer # Increase the current value whenever an interface has been added, removed or changed. # Always increase revision value whenever an interface has been added, removed or changed. # Increase the age value only if the changes made to the ABI are backward compatible. # Set version to the value of subtract age from current # Reset current and version to 1 and, age and version to 0 if library's name is changed -LT_CURRENT='2' -LT_REVISION='1' -LT_AGE='1' -LT_VERSION='1' +LT_CURRENT='3' +LT_REVISION='2' +LT_AGE='0' +LT_VERSION='2' libgxml = library(VERSIONED_PROJECT_NAME, valasources+sources+configvapi, version : LT_VERSION, diff --git a/meson.build b/meson.build index 13817cde..208958dd 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('gxml', [ 'vala', 'c'], version : '0.17.0') +project('gxml', [ 'vala', 'c'], version : '0.18.0') PROJECT_NAME = meson.project_name () API_VERSION = '0.18' -- GitLab