Skip to content

Commit

Permalink
ver: bump version to v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
XuehaiPan committed Dec 29, 2024
1 parent 1f76ccc commit 08f2131
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 11 deletions.
27 changes: 22 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <code>nvitop-exporter</code>.
</p>


### Table of Contents <!-- omit in toc --> <!-- markdownlint-disable heading-increment -->

- [Features](#features)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

------

Expand Down
2 changes: 1 addition & 1 deletion nvitop-exporter/nvitop_exporter/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion nvitop-exporter/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion nvitop/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '[email protected]'
Expand Down

0 comments on commit 08f2131

Please sign in to comment.