diff --git a/CHANGELOG.md b/CHANGELOG.md index 078bf39..47d7604 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.5.0] - 2025-04-25 + +### Added + - Show `%GMBW` in main screen by [@XuehaiPan](https://github.com/XuehaiPan) in [#156](https://github.com/XuehaiPan/nvitop/pull/156). - Add doctests and add type annotations in `nvitop.tui` by [@XuehaiPan](https://github.com/XuehaiPan) in [#164](https://github.com/XuehaiPan/nvitop/pull/164). @@ -164,7 +184,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ------ -[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.4.2...HEAD +[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.5.0...HEAD +[1.5.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.5.0 [1.4.2]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.2 [1.4.1]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.1 [1.4.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.4.0 diff --git a/README.md b/README.md index 8aacb8c..eb2f866 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,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.4.2)): +Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.5.0)): ```bash pip3 install --upgrade pip setuptools diff --git a/docs/source/index.rst b/docs/source/index.rst index 7c4d10f..e5b0364 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.4.2 +.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.5.0 ------ diff --git a/nvitop-exporter/nvitop_exporter/version.py b/nvitop-exporter/nvitop_exporter/version.py index fd20a06..95aaed5 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.4.2' +__version__ = '1.5.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 87b0f38..32fe517 100644 --- a/nvitop-exporter/pyproject.toml +++ b/nvitop-exporter/pyproject.toml @@ -47,7 +47,7 @@ classifiers = [ ] dependencies = [ # Sync with nvitop/version.py and requirements.txt - "nvitop ~= 1.4.2", + "nvitop ~= 1.5.0", "prometheus-client >= 0.4.0", ] dynamic = ["version"] diff --git a/nvitop/version.py b/nvitop/version.py index 5175a3a..174a990 100644 --- a/nvitop/version.py +++ b/nvitop/version.py @@ -18,7 +18,7 @@ # pylint: disable=invalid-name -__version__ = '1.4.2' +__version__ = '1.5.0' __license__ = 'Apache-2.0 AND GPL-3.0-only' __author__ = __maintainer__ = 'Xuehai Pan' __email__ = 'XuehaiPan@pku.edu.cn'