From e940bb72695b44ff5d86406c14b9e0d322b86f01 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Wed, 13 Apr 2016 17:00:09 -0400 Subject: [PATCH] barectf v2.2.0 Signed-off-by: Philippe Proulx --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ barectf/__init__.py | 2 +- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b0f8d6..cdb79da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # barectf 2 changelog +## barectf v2.2.0 + +**Features**: + + * Add `$default` boolean property to stream objects, and + `$default-stream` string property to the metadata object, to specify + a _default stream_: when a default stream exists, tracing function + aliases without the default stream name (`barectf_trace_my_event()`, + for example) are also generated + * Add `options` property to the configuration object, with: + * `gen-prefix-def`: true to generate a preprocessor definition + (`#define`) in `barectf.h` for the effective prefix + * `gen-default-stream-def`: true to generate a preprocessor + definition for the default stream name, if any + * Create `barectf-tracepoint.h`, a bridging C header file that + allows LTTng-UST tracepoints to be used as is with barectf by + providing the same `tracepoint()` macro + +**Tests**: + + * Test the new `$default` (stream object), `$default-stream` (metadata + object), and `options` (configuration object) properties + +**README.md**: + + * Add instructions for installing barectf on Arch Linux using the AUR + * Add instructions for installing barectf on Ubuntu using a PPA + + ## barectf v2.1.4 **Minor improvements**: diff --git a/barectf/__init__.py b/barectf/__init__.py index 680aaf7..7b7ab6f 100644 --- a/barectf/__init__.py +++ b/barectf/__init__.py @@ -20,7 +20,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. -__version__ = '2.2.0-dev' +__version__ = '2.2.0' def _split_version_suffix(): -- 2.34.1