From 410785e283b5493b715dcae29c63e0d4e8f5e9b4 Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Sat, 26 Aug 2023 17:39:40 +0000 Subject: [PATCH] ver: bump version to 1.3.0 --- CHANGELOG.md | 27 ++++++++++++++++++++++----- README.md | 2 +- docs/source/index.rst | 2 +- nvitop/version.py | 2 +- 4 files changed, 25 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39e5027f..26b040da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 93db153a..887ac4dc 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/source/index.rst b/docs/source/index.rst index fc1b7272..47bd642e 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -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 ------ diff --git a/nvitop/version.py b/nvitop/version.py index 51b6c39f..7e36289e 100644 --- a/nvitop/version.py +++ b/nvitop/version.py @@ -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'