From c6d4a597213c93a865e05f93227b108ed2a79761 Mon Sep 17 00:00:00 2001 From: David Goulet Date: Tue, 20 Mar 2012 16:42:48 -0400 Subject: [PATCH] Update version to v2.0.0-rc4 Signed-off-by: David Goulet --- ChangeLog | 23 +++++++++++++++++++++++ configure.ac | 5 ++++- src/bin/lttng/lttng.c | 2 +- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 3b3bf314c..22d3d4c9a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,26 @@ +2012-03-20 lttng-tools 2.0.0-rc4 + * Fix: add small detail to enable-channel man page + * Fix: warned of arbitrary time for ust-nprocesses test + * Fix. add limitation to man page + * Fix: minor changes to lttng.1 + * Fix: add exit values to lttng.1 man page + * Fix: add delay before validating apps in test nproc + * Fix: error handling in lttng enable-event + * Fix: document structure init. to 0 in lttng.h + * Fix: uninitialized variable + * Keep track of FD used for UST applications (v2) + * Fix: lttng view, error message and exit code + * Small fixes to lttng man pages (v2) + * Fix: handle EINTR for sendmsg syscall + * Fix: lttng UI exit value and error message + * Fix: session lock use after free + * Fix kernel_list_events memleaks + * Fix debug message use uninitialized variable + * Fix: trace_ust_destroy_metadata should check for NULL pointer + * Fix: various memleaks + * Fix: hash table allocation out of order on error + * fix: lttng_ht_destroy memleak + 2012-03-16 lttng-tools 2.0.0-rc3 * Fix: missing headers for make dist * Fix: install lttng-consumerd in lib/lttng/libexec/ diff --git a/configure.ac b/configure.ac index 61e14b7b1..6f1902245 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([lttng-tools],[2.0.0-rc3],[dgoulet@efficios.com],[],[http://lttng.org]) +AC_INIT([lttng-tools],[2.0.0-rc4],[dgoulet@efficios.com],[],[http://lttng.org]) AC_CONFIG_AUX_DIR([config]) AC_CANONICAL_TARGET AC_CANONICAL_HOST @@ -6,6 +6,9 @@ AC_CONFIG_MACRO_DIR([config]) AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) +AC_DEFINE_UNQUOTED([VERSION_NAME], "TBD", "") +AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], "TBD", "") + AC_CONFIG_HEADERS([include/config.h]) AC_CHECK_HEADERS([ \ diff --git a/src/bin/lttng/lttng.c b/src/bin/lttng/lttng.c index 8ddba13f4..8d6c8e621 100644 --- a/src/bin/lttng/lttng.c +++ b/src/bin/lttng/lttng.c @@ -79,7 +79,7 @@ static struct cmd_struct commands[] = { static void usage(FILE *ofp) { - fprintf(ofp, "LTTng Trace Control " VERSION"\n\n"); + fprintf(ofp, "LTTng Trace Control " VERSION" - " VERSION_NAME"\n\n"); fprintf(ofp, "usage: lttng [OPTIONS] \n"); fprintf(ofp, "\n"); fprintf(ofp, "Options:\n"); -- 2.34.1