diff --git a/CHANGELOG.md b/CHANGELOG.md index b14f006f..3c12b5ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 2022.1.1 (2022-06-01) + +This is a minor release on the `2022.1` series. It addresses a bug fix in +Hatchet's query language and Hatchet's flamegraph output: + +* flamegraph: change count to be an int instead of a float +* query language: fix edge cases with + wildcard/quantifier by replacing it + with `.` followed by `*` + # 2022.1.0 (2022-05-01) Version `2022.1.0` is a major release. diff --git a/docs/conf.py b/docs/conf.py index 33880b46..17e2e689 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,12 +32,12 @@ project = "hatchet" copyright = "2017-2022, Lawrence Livermore National Security, LLC" -author = "Abhinav Bhatele" +author = "LLNL Developerss" # The short X.Y version -version = "2022.1.0" +version = "2022.1.1" # The full version, including alpha/beta/rc tags -release = "2022.1.0" +release = "2022.1.1" # -- General configuration --------------------------------------------------- @@ -176,7 +176,7 @@ class HatchetStyle(DefaultStyle): # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, "hatchet.tex", "hatchet Documentation", "Abhinav Bhatele", "manual") + (master_doc, "hatchet.tex", "hatchet Documentation", "LLNL Developers", "manual") ] diff --git a/hatchet/version.py b/hatchet/version.py index 460cdfd0..eb635bbd 100644 --- a/hatchet/version.py +++ b/hatchet/version.py @@ -3,5 +3,5 @@ # # SPDX-License-Identifier: MIT -__version_info__ = ("2022", "1", "0") +__version_info__ = ("2022", "1", "1") __version__ = ".".join(__version_info__) diff --git a/pyproject.toml b/pyproject.toml index 8ab5f99f..0f4df5f0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "llnl-hatchet" -version = "2022.1.0" +version = "2022.1.1" description = "A Python library for analyzing hierarchical performance data." authors = [ "Abhinav Bhatele ",