Skip to content

Commit

Permalink
updates for 2022.1.1 minor release
Browse files Browse the repository at this point in the history
* CHANGELOG
* version number throughout
  • Loading branch information
slabasan committed Jul 5, 2022
1 parent c7d1288 commit fed1fb0
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
8 changes: 4 additions & 4 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down Expand Up @@ -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")
]


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", "1", "0")
__version_info__ = ("2022", "1", "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.1.0"
version = "2022.1.1"
description = "A Python library for analyzing hierarchical performance data."
authors = [
"Abhinav Bhatele <bhatele@cs.umd.edu>",
Expand Down

0 comments on commit fed1fb0

Please sign in to comment.