From f450c2ad36f220a9d9b23fb6d5607a084bb9db58 Mon Sep 17 00:00:00 2001 From: Stephanie Labasan Brink Date: Fri, 19 Aug 2022 15:34:47 -0700 Subject: [PATCH] 2022.2.0 major release (#62) * CHANGELOG * version number throughout --- CHANGELOG.md | 11 +++++++++++ docs/conf.py | 4 ++-- hatchet/version.py | 2 +- pyproject.toml | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c12b5ef..4b4e83fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# 2022.2.0 (2022-08-19) + +Version `2022.2.0` is a major release. + +* Adds writers module to installed modules to resolve package install +* CaliperReader bug fixes: filter records to parse, ignore function metadata + field +* Modify graphframe copy/deepcopy +* Adds beautiful soup 4 to requirements.txt +* Add new page on using hatchet on LLNL systems + # 2022.1.1 (2022-06-01) This is a minor release on the `2022.1` series. It addresses a bug fix in diff --git a/docs/conf.py b/docs/conf.py index e62b6c23..6f07df61 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,9 +32,9 @@ author = "LLNL Developerss" # The short X.Y version -version = "2022.1.1" +version = "2022.2.0" # The full version, including alpha/beta/rc tags -release = "2022.1.1" +release = "2022.2.0" # -- General configuration --------------------------------------------------- diff --git a/hatchet/version.py b/hatchet/version.py index eb635bbd..08768e90 100644 --- a/hatchet/version.py +++ b/hatchet/version.py @@ -3,5 +3,5 @@ # # SPDX-License-Identifier: MIT -__version_info__ = ("2022", "1", "1") +__version_info__ = ("2022", "2", "0") __version__ = ".".join(__version_info__) diff --git a/pyproject.toml b/pyproject.toml index 0f4df5f0..8aa46400 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llnl-hatchet" -version = "2022.1.1" +version = "2022.2.0" description = "A Python library for analyzing hierarchical performance data." authors = [ "Abhinav Bhatele ",