Update version to v2.1.0-rc1
authorDavid Goulet <dgoulet@efficios.com>
Fri, 17 Aug 2012 19:50:00 +0000 (15:50 -0400)
committerDavid Goulet <dgoulet@efficios.com>
Fri, 17 Aug 2012 19:55:34 +0000 (15:55 -0400)
Bump internal UST major version.

Fix comments and debug output to follow this change.

Signed-off-by: David Goulet <dgoulet@efficios.com>
ChangeLog
configure.ac
src/bin/lttng-sessiond/ust-app.c
src/bin/lttng-sessiond/ust-app.h

index 7999aca5b0853e6bcabdcf543f37d7b41fc628a5..2706d620973e47b8957c9b3c3d810dbb8a1c2610 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2012-08-17 lttng-tools 2.1.0-rc1
+       * Feature: Network Streaming
+       * Add the lttng-relayd binary for network streaming
+       * Support user space tracer filtering
+       * Multiple fixes
+
 2012-04-19 lttng-tools 2.0.1
        * Fix: test script for kernel module validation
        * Fix: report error to client on consumerd error
 2012-04-19 lttng-tools 2.0.1
        * Fix: test script for kernel module validation
        * Fix: report error to client on consumerd error
index 23a29bc0f5541559e7c48a11992e84dd2b389d0a..08bb2d293b2c8ed5c9c1b75d5ac26ef5e35c83ce 100644 (file)
@@ -1,4 +1,4 @@
-AC_INIT([lttng-tools],[2.0.1],[dgoulet@efficios.com],[],[http://lttng.org])
+AC_INIT([lttng-tools],[2.1.0-rc1],[dgoulet@efficios.com],[],[http://lttng.org])
 AC_CONFIG_AUX_DIR([config])
 AC_CANONICAL_TARGET
 AC_CANONICAL_HOST
 AC_CONFIG_AUX_DIR([config])
 AC_CANONICAL_TARGET
 AC_CANONICAL_HOST
@@ -6,8 +6,8 @@ AC_CONFIG_MACRO_DIR([config])
 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
 AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 
-version_name="Annedd'ale"
-version_description="New type of beer, 100% from Quebec, flavored with sapin beaumier needles, with a touch of hops."
+version_name="Basse Messe"
+version_description="Light coloured German ale whose style was named after the city Cologne (Koln) where it was first brewed. It is a rather simple beer with lightly fruity aromas and a delicate hoppy fragrance. The beer has a pronounced malty taste with a subtle bitter aftertaste"
 
 AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "")
 AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description"], "")
 
 AC_DEFINE_UNQUOTED([VERSION_NAME], ["$version_name"], "")
 AC_DEFINE_UNQUOTED([VERSION_DESCRIPTION], ["$version_description"], "")
index 7f4e9f1e0c928df31c5b5a39b1614e54f22361f8..6a2cfc988a24006b03ac3eee21747616d58e7e3a 100644 (file)
@@ -2925,7 +2925,7 @@ int ust_app_validate_version(int sock)
                goto error;
        }
 
                goto error;
        }
 
-       DBG2("UST app PID %d is compatible with major version %d "
+       DBG2("UST app PID %d is compatible with internal major version %d "
                        "(supporting == %d)", app->pid, app->version.major,
                        UST_APP_MAJOR_VERSION);
        app->compatible = 1;
                        "(supporting == %d)", app->pid, app->version.major,
                        UST_APP_MAJOR_VERSION);
        app->compatible = 1;
@@ -2934,7 +2934,7 @@ int ust_app_validate_version(int sock)
        return 0;
 
 error:
        return 0;
 
 error:
-       DBG2("UST app PID %d is not compatible with major version %d "
+       DBG2("UST app PID %d is not compatible with internal major version %d "
                        "(supporting == %d)", app->pid, app->version.major,
                        UST_APP_MAJOR_VERSION);
        app->compatible = 0;
                        "(supporting == %d)", app->pid, app->version.major,
                        UST_APP_MAJOR_VERSION);
        app->compatible = 0;
index 3f6eca1262d971c9d784cf4f092f6ac904337691..ada517e10432113bca7e166bbce618a83d1123f4 100644 (file)
@@ -24,7 +24,7 @@
 
 /* lttng-ust supported version. */
 #define LTTNG_UST_COMM_MAJOR          2        /* comm protocol major version */
 
 /* lttng-ust supported version. */
 #define LTTNG_UST_COMM_MAJOR          2        /* comm protocol major version */
-#define UST_APP_MAJOR_VERSION         2 /* UST version supported */
+#define UST_APP_MAJOR_VERSION         3 /* Internal UST version supported */
 
 #define UST_APP_EVENT_LIST_SIZE 32
 
 
 #define UST_APP_EVENT_LIST_SIZE 32
 
This page took 0.030504 seconds and 5 git commands to generate.