Skip to content

Commit 08f2131

Browse files
committed
ver: bump version to v1.4.0
1 parent 1f76ccc commit 08f2131

File tree

6 files changed

+27
-11
lines changed

6 files changed

+27
-11
lines changed

CHANGELOG.md

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

1414
### Added
1515

16+
-
17+
18+
### Changed
19+
20+
-
21+
22+
### Fixed
23+
24+
-
25+
26+
### Removed
27+
28+
-
29+
30+
------
31+
32+
## [1.4.0] - 2024-12-29
33+
34+
### Added
35+
1636
- Add Grafana dashboard for `nvitop-exporter` by [@XuehaiPan](https://github.com/XuehaiPan) in [#138](https://github.com/XuehaiPan/nvitop/pull/138).
1737
- Handle exceptions for function `getpass.getuser()` by [@XuehaiPan](https://github.com/XuehaiPan) in [#130](https://github.com/XuehaiPan/nvitop/pull/130). Issued by [@landgraf](https://github.com/landgraf).
1838

@@ -25,10 +45,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2545
- Fix documentation for the `ResourceMetricCollector.clear()` method by [@MyGodItsFull0fStars](https://github.com/MyGodItsFull0fStars) in [#132](https://github.com/XuehaiPan/nvitop/pull/132).
2646
- Gracefully ignore UTF-8 decoding errors by [@XuehaiPan](https://github.com/XuehaiPan).
2747

28-
### Removed
29-
30-
-
31-
3248
------
3349

3450
## [1.3.2] - 2023-10-17
@@ -129,7 +145,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
129145

130146
------
131147

132-
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.2...HEAD
148+
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.4.0...HEAD
149+
[1.4.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.0
133150
[1.3.2]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.2
134151
[1.3.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.1
135152
[1.3.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.0

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for G
2828
A Grafana dashboard built on top of <code>nvitop-exporter</code>.
2929
</p>
3030

31-
3231
### Table of Contents <!-- omit in toc --> <!-- markdownlint-disable heading-increment -->
3332

3433
- [Features](#features)
@@ -205,7 +204,7 @@ Install from conda-forge ([![conda-forge](https://img.shields.io/conda/v/conda-f
205204
conda install -c conda-forge nvitop
206205
```
207206

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

210209
```bash
211210
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.3.2
84+
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.0
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.3.2'
21+
__version__ = '1.4.0'
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.3.2",
51+
"nvitop == 1.4.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.3.2'
21+
__version__ = '1.4.0'
2222
__license__ = 'GPL-3.0-only AND Apache-2.0'
2323
__author__ = __maintainer__ = 'Xuehai Pan'
2424
__email__ = '[email protected]'

0 commit comments

Comments
 (0)