Skip to content

Commit d0a043e

Browse files
committed
ver: bump version to v1.6.0
1 parent ffc344d commit d0a043e

File tree

6 files changed

+18
-9
lines changed

6 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Added
1515

16-
- Add `nvidia-ml-py` 13.580.82 to support list for NVIDIA Spark/Thor by [@johnnynunez](https://github.com/johnnynunez) in [#186](https://github.com/XuehaiPan/nvitop/pull/186).
17-
- Add bar charts for memory bandwidth and power usage in the main screen by [@XuehaiPan](https://github.com/XuehaiPan) in [#190](https://github.com/XuehaiPan/nvitop/pull/190).
18-
- Add workflow to build and publish Docker images to GitHub Container Registry by [@XuehaiPan](https://github.com/XuehaiPan) in [#190](https://github.com/XuehaiPan/nvitop/pull/190). Issued by [@ntheanh201](https://github.com/ntheanh201).
16+
-
1917

2018
### Changed
2119

@@ -31,6 +29,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3129

3230
------
3331

32+
## [1.6.0] - 2025-11-11
33+
34+
### Added
35+
36+
- Add `nvidia-ml-py` 13.580.82 to support list for NVIDIA Spark/Thor by [@johnnynunez](https://github.com/johnnynunez) in [#186](https://github.com/XuehaiPan/nvitop/pull/186).
37+
- Add bar charts for memory bandwidth and power usage in the main screen by [@XuehaiPan](https://github.com/XuehaiPan) in [#190](https://github.com/XuehaiPan/nvitop/pull/190).
38+
- Add workflow to build and publish Docker images to GitHub Container Registry by [@XuehaiPan](https://github.com/XuehaiPan) in [#190](https://github.com/XuehaiPan/nvitop/pull/190). Issued by [@ntheanh201](https://github.com/ntheanh201).
39+
40+
------
41+
3442
## [1.5.3] - 2025-08-16
3543

3644
### Added
@@ -230,7 +238,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
230238

231239
------
232240

233-
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.5.3...HEAD
241+
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.6.0...HEAD
242+
[1.6.0]: https://github.com/XuehaiPan/nvitop/compare/v1.5.3...v1.6.0
234243
[1.5.3]: https://github.com/XuehaiPan/nvitop/compare/v1.5.2...v1.5.3
235244
[1.5.2]: https://github.com/XuehaiPan/nvitop/compare/v1.5.1...v1.5.2
236245
[1.5.1]: https://github.com/XuehaiPan/nvitop/compare/v1.5.0...v1.5.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ Install from conda-forge ([![conda-forge](https://img.shields.io/conda/v/conda-f
202202
conda install -c conda-forge nvitop
203203
```
204204

205-
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.5.3)):
205+
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.6.0)):
206206

207207
```bash
208208
pip3 install --upgrade pip setuptools

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Or, clone this repo and install manually:
8383
8484
If this repo is useful to you, please star ⭐️ it to let more people know 🤗. |GitHub Repo Stars|_
8585

86-
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.5.3
86+
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.6.0
8787

8888
------
8989

nvitop-exporter/nvitop_exporter/version.py

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

1919
# pylint: disable=invalid-name
2020

21-
__version__ = '1.5.3'
21+
__version__ = '1.6.0'
2222
__license__ = 'Apache-2.0'
2323
__author__ = __maintainer__ = 'Xuehai Pan'
2424
__email__ = 'XuehaiPan@pku.edu.cn'

nvitop-exporter/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ classifiers = [
4848
]
4949
dependencies = [
5050
# Sync with nvitop/version.py and requirements.txt
51-
"nvitop ~= 1.5.3",
51+
"nvitop ~= 1.6.0",
5252
"prometheus-client >= 0.4.0",
5353
]
5454
dynamic = ["version"]

nvitop/version.py

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

1919
# pylint: disable=invalid-name
2020

21-
__version__ = '1.5.3'
21+
__version__ = '1.6.0'
2222
__license__ = 'Apache-2.0 AND GPL-3.0-only'
2323
__author__ = __maintainer__ = 'Xuehai Pan'
2424
__email__ = 'XuehaiPan@pku.edu.cn'

0 commit comments

Comments
 (0)