Skip to content

Commit 27c3143

Browse files
committed
ver: bump version to v1.4.1
1 parent d623531 commit 27c3143

File tree

7 files changed

+18
-9
lines changed

7 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2121

2222
### Fixed
2323

24-
- Fix passing invalid device handle (e.g., GPU is lost) to NVML functions by [@XuehaiPan](https://github.com/XuehaiPan) in [#146](https://github.com/XuehaiPan/nvitop/pull/146).
25-
- Fix CUDA device selection tool `nvisel` by [@XuehaiPan](https://github.com/XuehaiPan).
24+
-
2625

2726
### Removed
2827

2928
-
3029

3130
------
3231

32+
## [1.4.1] - 2025-01-13
33+
34+
### Fixed
35+
36+
- Fix passing invalid device handle (e.g., GPU is lost) to NVML functions by [@XuehaiPan](https://github.com/XuehaiPan) in [#146](https://github.com/XuehaiPan/nvitop/pull/146).
37+
- Fix CUDA device selection tool `nvisel` by [@XuehaiPan](https://github.com/XuehaiPan).
38+
39+
------
40+
3341
## [1.4.0] - 2024-12-29
3442

3543
### Added
@@ -146,7 +154,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
146154

147155
------
148156

149-
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.4.0...HEAD
157+
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.4.1...HEAD
158+
[1.4.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.1
150159
[1.4.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.0
151160
[1.3.2]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.2
152161
[1.3.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.1

README.md

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

207-
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.0)):
207+
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.1)):
208208

209209
```bash
210210
pip3 install --upgrade pip setuptools

docs/source/index.rst

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

84-
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.0
84+
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.1
8585

8686
------
8787

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.4.0'
21+
__version__ = '1.4.1'
2222
__license__ = 'Apache-2.0'
2323
__author__ = __maintainer__ = 'Xuehai Pan'
2424
__email__ = '[email protected]'

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.4.0",
51+
"nvitop ~= 1.4.1",
5252
"prometheus-client >= 0.4.0",
5353
]
5454
dynamic = ["version"]

nvitop-exporter/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
nvitop ~= 1.4.0
1+
nvitop
22
prometheus-client >= 0.4.0

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.4.0'
21+
__version__ = '1.4.1'
2222
__license__ = 'GPL-3.0-only AND Apache-2.0'
2323
__author__ = __maintainer__ = 'Xuehai Pan'
2424
__email__ = '[email protected]'

0 commit comments

Comments
 (0)