Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# 2026.1.0 (2026-03-06)

Version `2026.1.0` is a major release.

### Notable Changes
- fix caliper lulesh tests, add caliper install to path in CI (#179)
- add python 3.12 and python 3.13 to unit tests, separate out coverage to its own workflow (#177)
- pin pandas version to less than 3 (#176)

### Bugfixes

### Internal Updates
- run coverage on push to develop (#178)

# 2025.2.0 (2025-12-22)

Version `2025.2.0` is a major release.
Expand Down
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
# -- Project information -----------------------------------------------------

project = "hatchet"
copyright = "2017-2025, Lawrence Livermore National Security, LLC"
copyright = "2017-2023, Lawrence Livermore National Security, LLC"
author = "LLNL Developers"

# The short X.Y version
version = "2025.2.0"
version = "2026.1.0"
# The full version, including alpha/beta/rc tags
release = "2025.2.0"
release = "2026.1.0"


# -- 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__ = ("2025", "2", "0")
__version_info__ = ("2026", "1", "0")
__version__ = ".".join(__version_info__)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[tool.poetry]
name = "llnl-hatchet"
version = "2025.2.0"
version = "2026.1.0"
description = "A Python library for analyzing hierarchical performance data."
authors = [
"Abhinav Bhatele <bhatele@cs.umd.edu>",
Expand Down