summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog12
-rw-r--r--NEWS25
-rwxr-xr-xconfigure22
-rw-r--r--configure.ac4
-rw-r--r--packages/deb/changelog6
5 files changed, 55 insertions, 14 deletions
diff --git a/ChangeLog b/ChangeLog
index 9ac37d5..2c539f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Fri Jul 29 19:05:21 2011 Google Inc. <opensource@google.com>
+
+ * google-gflags: version 1.6
+ * BUGFIX: Fix a bug where we were leaving out a required $(top_srcdir)
+ * Fix definition of clstring (jyrki)
+ * Split up flag declares into its own file (jyrki)
+ * Add --version support (csilvers)
+ * Update the README for gflags with static libs
+ * Update acx_pthread.m4 for nostdlib
+ * Change ReparseCommandLineFlags to return void (csilvers)
+ * Some doc typofixes and example augmentation (various)
+
Mon Jan 24 16:11:35 2011 Google Inc. <opensource@google.com>
* google-gflags: version 1.5
diff --git a/NEWS b/NEWS
index 4f25a9f..fd02283 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,27 @@
-== 24 January 2011 ==
+== 29 July 2011 ==
+
+I've just released gflags 1.6. The major new feature in this release
+is support for setting version info, so that --version does something
+useful.
+
+One minor change has required bumping the library number:
+`ReparseCommandlineFlags` now returns `void` instead of `int` (the int
+return value was always meaningless). Though I doubt anyone ever used
+this (meaningless) return value, technically it's a change to the ABI
+that requires a version bump. A bit sad.
+
+There's also a procedural change with this release: I've changed the
+internal tools used to integrate Google-supplied patches for gflags
+into the opensource release. These new tools should result in more
+frequent updates with better change descriptions. They will also
+result in future `ChangeLog` entries being much more verbose (for better
+or for worse).
+
+See the
+[http://code.google.com/p/google-gflags/source/browse/tags/gflags-1.6/ChangeLog ChangeLog]
+for a full list of changes for this release.
+
+=== 24 January 2011 ===
I've just released gflags 1.5. This release has only minor changes
from 1.4, including some slightly better reporting in --help, and
diff --git a/configure b/configure
index d1d2575..f6337b4 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.62 for gflags 1.5.
+# Generated by GNU Autoconf 2.62 for gflags 1.6.
#
# Report bugs to <opensource@google.com>.
#
@@ -745,8 +745,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='gflags'
PACKAGE_TARNAME='gflags'
-PACKAGE_VERSION='1.5'
-PACKAGE_STRING='gflags 1.5'
+PACKAGE_VERSION='1.6'
+PACKAGE_STRING='gflags 1.6'
PACKAGE_BUGREPORT='opensource@google.com'
ac_unique_file="README"
@@ -1496,7 +1496,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures gflags 1.5 to adapt to many kinds of systems.
+\`configure' configures gflags 1.6 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1566,7 +1566,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of gflags 1.5:";;
+ short | recursive ) echo "Configuration of gflags 1.6:";;
esac
cat <<\_ACEOF
@@ -1672,7 +1672,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-gflags configure 1.5
+gflags configure 1.6
generated by GNU Autoconf 2.62
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1686,7 +1686,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by gflags $as_me 1.5, which was
+It was created by gflags $as_me 1.6, which was
generated by GNU Autoconf 2.62. Invocation command line was
$ $0 $@
@@ -2054,7 +2054,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
-SO_VERSION=1:0:1
+SO_VERSION=2:0:0
# The argument here is just something that should be in the current directory
# (for sanity checking)
@@ -2408,7 +2408,7 @@ fi
# Define the identity of the package.
PACKAGE='gflags'
- VERSION='1.5'
+ VERSION='1.6'
cat >>confdefs.h <<_ACEOF
@@ -18469,7 +18469,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by gflags $as_me 1.5, which was
+This file was extended by gflags $as_me 1.6, which was
generated by GNU Autoconf 2.62. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -18522,7 +18522,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_version="\\
-gflags config.status 1.5
+gflags config.status 1.6
configured by $0, generated by GNU Autoconf 2.62,
with options \\"`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"
diff --git a/configure.ac b/configure.ac
index 94686c5..0cc4349 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,10 +4,10 @@
# make sure we're interpreted by some minimal autoconf
AC_PREREQ(2.57)
-AC_INIT(gflags, 1.5, opensource@google.com)
+AC_INIT(gflags, 1.6, opensource@google.com)
# Update this value for every release! (A:B:C will map to foo.so.(A-C).C.B)
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
-SO_VERSION=1:0:1
+SO_VERSION=2:0:0
# The argument here is just something that should be in the current directory
# (for sanity checking)
diff --git a/packages/deb/changelog b/packages/deb/changelog
index abae5a6..314a452 100644
--- a/packages/deb/changelog
+++ b/packages/deb/changelog
@@ -1,3 +1,9 @@
+gflags (1.6-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Google Inc. <opensource@google.com> Fri, 29 Jul 2011 19:05:21 -0700
+
gflags (1.5-1) unstable; urgency=low
* New upstream release.