Skip to content

Commit 2b3ec12

Browse files
committed
ver: bump version to v1.3.1
1 parent a37e63f commit 2b3ec12

File tree

6 files changed

+21
-8
lines changed

6 files changed

+21
-8
lines changed

CHANGELOG.md

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

1414
### Added
1515

16-
- Add Python 3.12 classifiers by [@XuehaiPan](https://github.com/XuehaiPan) in [#101](https://github.com/XuehaiPan/nvitop/pull/101).
16+
-
1717

1818
### Changed
1919

2020
-
2121

2222
### Fixed
2323

24-
- Fix `libcuda.cuDeviceGetUuid()` when the UUID contains `0x00` by [@XuehaiPan](https://github.com/XuehaiPan) in [#100](https://github.com/XuehaiPan/nvitop/pull/100).
24+
-
2525

2626
### Removed
2727

2828
-
2929

3030
------
3131

32+
## [1.3.1] - 2023-10-05
33+
34+
### Added
35+
36+
- Add Python 3.12 classifiers by [@XuehaiPan](https://github.com/XuehaiPan) in [#101](https://github.com/XuehaiPan/nvitop/pull/101).
37+
38+
### Fixed
39+
40+
- Fix `libcuda.cuDeviceGetUuid()` when the UUID contains `0x00` by [@XuehaiPan](https://github.com/XuehaiPan) in [#100](https://github.com/XuehaiPan/nvitop/pull/100).
41+
42+
------
43+
3244
## [1.3.0] - 2023-08-27
3345

3446
### Added
@@ -106,7 +118,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
106118

107119
------
108120

109-
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.0...HEAD
121+
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.1...HEAD
122+
[1.3.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.1
110123
[1.3.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.0
111124
[1.2.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.2.0
112125
[1.1.2]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.1.2

README.md

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

161-
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.0)):
161+
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.1)):
162162

163163
```bash
164164
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.0
84+
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.1
8585

8686
------
8787

nvitop-exporter/nvitop_exporter/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# ==============================================================================
1717
"""Prometheus exporter built on top of ``nvitop``."""
1818

19-
__version__ = '1.3.0'
19+
__version__ = '1.3.1'
2020
__license__ = 'Apache-2.0'
2121
__author__ = __maintainer__ = 'Xuehai Pan'
2222
__email__ = '[email protected]'

nvitop-exporter/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ classifiers = [
4747
]
4848
dependencies = [
4949
# Sync with nvitop/version.py and requirements.txt
50-
"nvitop == 1.3.0",
50+
"nvitop == 1.3.1",
5151
"prometheus-client >= 0.4.0",
5252
]
5353
dynamic = ["version"]

nvitop/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# ==============================================================================
1717
"""An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management."""
1818

19-
__version__ = '1.3.0'
19+
__version__ = '1.3.1'
2020
__license__ = 'GPL-3.0-only AND Apache-2.0'
2121
__author__ = __maintainer__ = 'Xuehai Pan'
2222
__email__ = '[email protected]'

0 commit comments

Comments
 (0)