Skip to content

Commit

Permalink
1.3.1a0: make version number PEP440 compliant (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
bhatele authored Apr 2, 2021
1 parent 3180410 commit a6d5002
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# v1.3.1-alpha (2021-03-31)
# v1.3.1a0 (2021-04-02)

This alpha patch extends the query language to support querying nodes that
This release extends the query language to support querying nodes that
fall within a range and includes a critical fix for using the query language on
a dataframe that may contain nan and infs values.

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
author = "Abhinav Bhatele"

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


# -- General configuration ---------------------------------------------------
Expand Down
14 changes: 7 additions & 7 deletions hatchet/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2017-2021 Lawrence Livermore National Security, LLC and other
# Hatchet Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT

__version_info__ = ("1", "3", "1-alpha")
__version__ = ".".join(__version_info__)
# Copyright 2017-2021 Lawrence Livermore National Security, LLC and other
# Hatchet Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: MIT

__version_info__ = ("1", "3", "1a0")
__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 = "hatchet"
version = "1.3.1-alpha"
version = "1.3.1a0"
description = "A Python library for analyzing hierarchical performance data."
authors = [
"Abhinav Bhatele <[email protected]>",
Expand Down

0 comments on commit a6d5002

Please sign in to comment.