From 60d63b2c085d7208f652eb606162933db010a984 Mon Sep 17 00:00:00 2001 From: Philippe Proulx Date: Mon, 25 Mar 2019 16:28:03 -0400 Subject: [PATCH] barectf v2.3.1 Signed-off-by: Philippe Proulx Signed-off-by: Philippe Proulx --- CHANGELOG.md | 11 +++++++++++ barectf/__init__.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 113bb21..5256eff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # barectf 2 changelog +## barectf v2.3.1 + +**Fixes**: + + * Share operations between event size computation and event + serialization to avoid buffer overflow. + * Do not sample clock when closing and opening packets when this is + done because the current event does not fit the current packet. This + avoids a packet's first event having a timestamp that is less than + the packet's beginning timestamp. + ## barectf v2.3.0 **Features**: diff --git a/barectf/__init__.py b/barectf/__init__.py index 881fa9e..f13bb19 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.3.0' +__version__ = '2.3.1' def _split_version_suffix(): -- 2.34.1