summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Pablo Ugarte <juanpablougarte@gmail.com>2012-09-18 20:54:53 -0300
committerJuan Pablo Ugarte <juanpablougarte@gmail.com>2012-09-19 14:32:55 -0300
commitd6504bacee3bfabf7ac737018a20a1e54b564fe2 (patch)
tree77e001bad731aefc55fef92c8c46fb6a27e563bf
parent7495734af83d7591ebdbebb6a8d9bc633ca143ca (diff)
downloadglade-GLADE_3_10_3.tar.gz
Rolling out 3.10.3GLADE_3_10_3
-rw-r--r--ChangeLog4
-rw-r--r--NEWS9
-rw-r--r--configure.ac6
3 files changed, 16 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 06f96ae8..2e315a3b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-09-18 Juan Pablo Ugarte <juanpablougarte@gmail.com>
+
+ * configure.ac, NEWS: Rolling 3.10.3
+
2012-01-29 Tristan Van Berkom <tvb@gnome.org>
* plugins/gtk+/gtk+.xml.in: Correct the 'book' to search for GTK+3 documentation,
diff --git a/NEWS b/NEWS
index 856cf626..ea89e935 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,13 @@
============
+Glade 3.10.3
+============
+ - New release to fix libtool version (bumped current to 1)
+ - Correct the 'book' to search for GTK+3 documentation,
+ Credit goes to Pietro Battiston for pointing out the exact problem.
+ - Explicitly link to gmodule-2.0 (bug 665784 Vincent Untz)
+ - Added custom build scripts for building on MS windows. (Dieter Verfaillie)
+
+============
Glade 3.10.2
============
- Make documentation parallel installable (bug 646997).
diff --git a/configure.ac b/configure.ac
index 0174456b..37d91cf9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ AC_PREREQ(2.52)
m4_define(glade_major_version, 3)
m4_define(glade_minor_version, 10)
-m4_define(glade_micro_version, 2)
+m4_define(glade_micro_version, 3)
m4_define(glade_version, glade_major_version.glade_minor_version.glade_micro_version)
AC_INIT([glade], [glade_version],
@@ -50,8 +50,8 @@ AC_PATH_PROG(DLLTOOL, dlltool)
# If any interfaces have been added since the last public release, then increment GLADE_AGE.
# If any interfaces have been removed since the last public release, then set GLADE_AGE to 0.
# Reference: http://www.gnu.org/software/libtool/manual.html#Versioning
-GLADE_REVISION=1
-GLADE_CURRENT=0
+GLADE_REVISION=0
+GLADE_CURRENT=1
GLADE_AGE=0
GLADE_CURRENT_MINUS_AGE=`expr $GLADE_CURRENT - $GLADE_AGE`
AC_SUBST(GLADE_REVISION)