diff --git a/CHANGELOG.md b/CHANGELOG.md index 803830d1..1fec63e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# 2023.1.1 (2023-09-20) + +Version `2023.1.1` is a minor release on the `2023.1` series. + +### Notable Changes +* Add support for NaNs in calculating exclusive columns and optionally specify + inclusive columns (#99) +* Adds support for tree annotations with coloring and min/max attributes (#97) +* caliperreader: handle other metadata types (#98) +* Update caliperreader to initialize nodes based on node order column (#94) +* Sort nodes in terminal tree by hatchet_nid instead alphabetically (#108) + +### Internal Updates +* docs: Update developer_guide.rst (#102) +* Deprecate Python2 CI coverage (#95) +* Adds hatchet/external/roundtrip to MANIFEST (#91) +* Removes python 3.5 from CI checks (#112) + # 2023.1.0 (2023-05-21) Version `2023.1.0` is a major release. diff --git a/docs/conf.py b/docs/conf.py index aa4e1f35..1e184b3a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,9 +29,9 @@ author = "LLNL Developerss" # The short X.Y version -version = "2023.1.0" +version = "2023.1.1" # The full version, including alpha/beta/rc tags -release = "2023.1.0" +release = "2023.1.1" # -- General configuration --------------------------------------------------- diff --git a/hatchet/version.py b/hatchet/version.py index 33207df5..63f9dc97 100644 --- a/hatchet/version.py +++ b/hatchet/version.py @@ -3,5 +3,5 @@ # # SPDX-License-Identifier: MIT -__version_info__ = ("2023", "1", "0") +__version_info__ = ("2023", "1", "1") __version__ = ".".join(__version_info__) diff --git a/pyproject.toml b/pyproject.toml index 7ddc2e0b..f29a17b7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta" [tool.poetry] name = "llnl-hatchet" -version = "2023.1.0" +version = "2023.1.1" description = "A Python library for analyzing hierarchical performance data." authors = [ "Abhinav Bhatele ",