Skip to content

Commit

Permalink
bump for 2022.2.1 minor release (#67)
Browse files Browse the repository at this point in the history
- update CHANGELOG
- bump version number
  • Loading branch information
slabasan authored Oct 17, 2022
1 parent 7f5932b commit 4063198
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion hatchet/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
#
# SPDX-License-Identifier: MIT

__version_info__ = ("2022", "2", "0")
__version_info__ = ("2022", "2", "1")
__version__ = ".".join(__version_info__)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>",
Expand Down

0 comments on commit 4063198

Please sign in to comment.