From 4063198bed99498c73f40d155da75a4026072fcc Mon Sep 17 00:00:00 2001 From: Stephanie Labasan Brink Date: Mon, 17 Oct 2022 13:18:56 -0700 Subject: [PATCH] bump for 2022.2.1 minor release (#67) - update CHANGELOG - bump version number --- CHANGELOG.md | 16 ++++++++++++++++ docs/conf.py | 4 ++-- hatchet/version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b4e83fc..717ad6b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,19 @@ +# 2022.2.1 (2022-10-17) + +This is a minor release on the `2022.2` series. + +# Notable Changes +* updates caliper reader to convert caliper metadata values into correct Python +* objects +* adds to_json writer and from_dict and from_json readers +* adds `render_header` parameter to tree() to toggle the header on/off +* adds the ability to match leaf nodes in the Query Language + +# Other Changes +* exposes version module to query hatchet version from the command line +* docs: update to using hatchet at llnl page +* adds a GitHub Action to test PyPI releases on a regular schedule + # 2022.2.0 (2022-08-19) Version `2022.2.0` is a major release. diff --git a/docs/conf.py b/docs/conf.py index 16cb8bb4..7e629174 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,9 +29,9 @@ author = "LLNL Developerss" # The short X.Y version -version = "2022.2.0" +version = "2022.2.1" # The full version, including alpha/beta/rc tags -release = "2022.2.0" +release = "2022.2.1" # -- General configuration --------------------------------------------------- diff --git a/hatchet/version.py b/hatchet/version.py index 08768e90..a7a4853b 100644 --- a/hatchet/version.py +++ b/hatchet/version.py @@ -3,5 +3,5 @@ # # SPDX-License-Identifier: MIT -__version_info__ = ("2022", "2", "0") +__version_info__ = ("2022", "2", "1") __version__ = ".".join(__version_info__) diff --git a/pyproject.toml b/pyproject.toml index 8aa46400..7ee53a5b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llnl-hatchet" -version = "2022.2.0" +version = "2022.2.1" description = "A Python library for analyzing hierarchical performance data." authors = [ "Abhinav Bhatele ",