Skip to content

Commit 83fdea0

Browse files
committed
Bump version number to v0.0.9
1 parent b1a961e commit 83fdea0

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

docs/pages/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22
Change Log
33
===================================
44

5+
v0.0.9
6+
===================================
7+
8+
Features:
9+
10+
* Support parsing ``tensors`` and ``text`` without the ``tensorflow`` package
11+
* Support NumPy 2.0
12+
* Explicitly support Python 3.12 on PyPI
13+
14+
Breaking Changes:
15+
16+
* Drops support for Python 3.7
17+
518
v0.0.8
619
===================================
720

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setuptools.setup(
99
name="tbparse",
10-
version="0.0.8",
10+
version="0.0.9",
1111
author="Johnson",
1212
author_email="[email protected]",
1313
description="Load tensorboard event logs as pandas DataFrames; " + \

tbparse/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Contains the version string."""
22

3-
VERSION = "0.0.8"
3+
VERSION = "0.0.9"
44

55
if __name__ == "__main__":
66
print(VERSION)

0 commit comments

Comments
 (0)