ver: bump version to 1.3.0

This commit is contained in:
Xuehai Pan 2023-08-26 17:39:40 +00:00
parent daf72c7bf3
commit 410785e283
4 changed files with 25 additions and 8 deletions

View file

@ -13,6 +13,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
-
### Changed
-
### Fixed
-
### Removed
-
------
## [1.3.0] - 2023-08-27
### Added
- Add Prometheus exporter by [@XuehaiPan](https://github.com/XuehaiPan) in [#92](https://github.com/XuehaiPan/nvitop/pull/92).
- Add device APIs to query PCIe and NVLink throughput by [@XuehaiPan](https://github.com/XuehaiPan) in [#87](https://github.com/XuehaiPan/nvitop/pull/87).
@ -25,10 +45,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix upstream changes for process info v3 APIs on 535.104.05 driver by [@XuehaiPan](https://github.com/XuehaiPan) in [#94](https://github.com/XuehaiPan/nvitop/pull/94).
- Fix removal for process info v3 APIs on the upstream 535.98 driver by [@XuehaiPan](https://github.com/XuehaiPan) in [#89](https://github.com/XuehaiPan/nvitop/pull/89).
### Removed
-
------
## [1.2.0] - 2023-07-24
@ -90,7 +106,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
------
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.2.0...HEAD
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.0...HEAD
[1.3.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.0
[1.2.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.2.0
[1.1.2]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.1.2
[1.1.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.1.1

View file

@ -158,7 +158,7 @@ Install from conda-forge ([![conda-forge](https://img.shields.io/conda/v/conda-f
conda install -c conda-forge nvitop
```
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.2.0)):
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.0)):
```bash
pip3 install --upgrade pip setuptools

View file

@ -81,7 +81,7 @@ Or, clone this repo and install manually:
If this repo is useful to you, please star ⭐️ it to let more people know 🤗. |GitHub Repo Stars|_
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.2.0
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.0
------

View file

@ -16,7 +16,7 @@
# ==============================================================================
"""An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management."""
__version__ = '1.2.0'
__version__ = '1.3.0'
__license__ = 'GPL-3.0-only AND Apache-2.0'
__author__ = __maintainer__ = 'Xuehai Pan'
__email__ = 'XuehaiPan@pku.edu.cn'