diff --git a/CHANGELOG.md b/CHANGELOG.md index fd0758ec..b36ea5ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,8 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added -- Add separate implementation for `GpuStatsLogger` callback for `lightning` by [@XuehaiPan](https://github.com/XuehaiPan) in [#114](https://github.com/XuehaiPan/nvitop/pull/114). -- Remove metrics if process is gone in `nvitop-exporter` by [@XuehaiPan](https://github.com/XuehaiPan) in [#107](https://github.com/XuehaiPan/nvitop/pull/107). +- ### Changed @@ -30,6 +29,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ------ +## [1.3.2] - 2023-10-17 + +### Added + +- Add separate implementation for `GpuStatsLogger` callback for `lightning` by [@XuehaiPan](https://github.com/XuehaiPan) in [#114](https://github.com/XuehaiPan/nvitop/pull/114). +- Remove metrics if process is gone in `nvitop-exporter` by [@XuehaiPan](https://github.com/XuehaiPan) in [#107](https://github.com/XuehaiPan/nvitop/pull/107). + +------ + ## [1.3.1] - 2023-10-05 ### Added @@ -119,7 +127,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ------ -[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.1...HEAD +[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.3.2...HEAD +[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 [1.2.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.2.0 diff --git a/README.md b/README.md index 251d2987..c88c98ae 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.3.1)): +Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.2)): ```bash pip3 install --upgrade pip setuptools diff --git a/docs/source/index.rst b/docs/source/index.rst index 7beae585..7619c7c3 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.1 +.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.3.2 ------ diff --git a/nvitop-exporter/nvitop_exporter/version.py b/nvitop-exporter/nvitop_exporter/version.py index 646a67e5..3c295c0a 100644 --- a/nvitop-exporter/nvitop_exporter/version.py +++ b/nvitop-exporter/nvitop_exporter/version.py @@ -16,7 +16,7 @@ # ============================================================================== """Prometheus exporter built on top of ``nvitop``.""" -__version__ = '1.3.1' +__version__ = '1.3.2' __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 a0f690f3..eaea50fc 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.3.1", + "nvitop == 1.3.2", "prometheus-client >= 0.4.0", ] dynamic = ["version"] diff --git a/nvitop/version.py b/nvitop/version.py index f7aa6333..be8a42bd 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.3.1' +__version__ = '1.3.2' __license__ = 'GPL-3.0-only AND Apache-2.0' __author__ = __maintainer__ = 'Xuehai Pan' __email__ = 'XuehaiPan@pku.edu.cn'