From 08f2131acdc1dcac6a480495742dbfac9af8d6f8 Mon Sep 17 00:00:00 2001 From: Xuehai Pan Date: Sun, 29 Dec 2024 21:45:54 +0800 Subject: [PATCH] ver: bump version to v1.4.0 --- CHANGELOG.md | 27 ++++++++++++++++++---- README.md | 3 +-- docs/source/index.rst | 2 +- nvitop-exporter/nvitop_exporter/version.py | 2 +- nvitop-exporter/pyproject.toml | 2 +- nvitop/version.py | 2 +- 6 files changed, 27 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0562e24..48dbe6b5 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.4.0] - 2024-12-29 + +### Added + - Add Grafana dashboard for `nvitop-exporter` by [@XuehaiPan](https://github.com/XuehaiPan) in [#138](https://github.com/XuehaiPan/nvitop/pull/138). - 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). @@ -25,10 +45,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix documentation for the `ResourceMetricCollector.clear()` method by [@MyGodItsFull0fStars](https://github.com/MyGodItsFull0fStars) in [#132](https://github.com/XuehaiPan/nvitop/pull/132). - Gracefully ignore UTF-8 decoding errors by [@XuehaiPan](https://github.com/XuehaiPan). -### Removed - -- - ------ ## [1.3.2] - 2023-10-17 @@ -129,7 +145,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ------ -[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.2...HEAD +[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.4.0...HEAD +[1.4.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.0 [1.3.2]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.2 [1.3.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.1 [1.3.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.3.0 diff --git a/README.md b/README.md index 52734a1f..9d7027cf 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,6 @@ An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for G A Grafana dashboard built on top of nvitop-exporter.

- ### Table of Contents - [Features](#features) @@ -205,7 +204,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.3.2)): +Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.0)): ```bash pip3 install --upgrade pip setuptools diff --git a/docs/source/index.rst b/docs/source/index.rst index 7619c7c3..f6f0e11f 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.3.2 +.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.4.0 ------ diff --git a/nvitop-exporter/nvitop_exporter/version.py b/nvitop-exporter/nvitop_exporter/version.py index 554090d1..34f52a5d 100644 --- a/nvitop-exporter/nvitop_exporter/version.py +++ b/nvitop-exporter/nvitop_exporter/version.py @@ -18,7 +18,7 @@ # pylint: disable=invalid-name -__version__ = '1.3.2' +__version__ = '1.4.0' __license__ = 'Apache-2.0' __author__ = __maintainer__ = 'Xuehai Pan' __email__ = 'XuehaiPan@pku.edu.cn' diff --git a/nvitop-exporter/pyproject.toml b/nvitop-exporter/pyproject.toml index a04d3801..9ccc69a8 100644 --- a/nvitop-exporter/pyproject.toml +++ b/nvitop-exporter/pyproject.toml @@ -48,7 +48,7 @@ classifiers = [ ] dependencies = [ # Sync with nvitop/version.py and requirements.txt - "nvitop == 1.3.2", + "nvitop == 1.4.0", "prometheus-client >= 0.4.0", ] dynamic = ["version"] diff --git a/nvitop/version.py b/nvitop/version.py index 6979fed7..a8adb8f2 100644 --- a/nvitop/version.py +++ b/nvitop/version.py @@ -18,7 +18,7 @@ # pylint: disable=invalid-name -__version__ = '1.3.2' +__version__ = '1.4.0' __license__ = 'GPL-3.0-only AND Apache-2.0' __author__ = __maintainer__ = 'Xuehai Pan' __email__ = 'XuehaiPan@pku.edu.cn'