mirror of
https://github.com/XuehaiPan/nvitop.git
synced 2026-05-15 14:15:55 -06:00
ver: bump version to v1.0.0
This commit is contained in:
parent
b20729ac18
commit
4bb337de61
5 changed files with 54 additions and 9 deletions
2
.github/ISSUE_TEMPLATE/bug-report.yaml
vendored
2
.github/ISSUE_TEMPLATE/bug-report.yaml
vendored
|
|
@ -33,7 +33,7 @@ body:
|
|||
attributes:
|
||||
label: What version of nvitop are you using?
|
||||
description: Run command `nvitop --version` or `python3 -m nvitop --version` in your shell and paste the output here.
|
||||
placeholder: E.g., 0.11.0
|
||||
placeholder: E.g., 1.0.0
|
||||
validations:
|
||||
required: true
|
||||
|
||||
|
|
|
|||
41
CHANGELOG.md
Normal file
41
CHANGELOG.md
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# Changelog
|
||||
|
||||
<!-- markdownlint-disable no-duplicate-header -->
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
------
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
### Added
|
||||
|
||||
|
||||
|
||||
### Changed
|
||||
|
||||
|
||||
|
||||
### Fixed
|
||||
|
||||
|
||||
|
||||
### Removed
|
||||
|
||||
|
||||
|
||||
------
|
||||
|
||||
## [1.0.0] - 2023-02-01
|
||||
|
||||
### Added
|
||||
|
||||
- The first stable release of `nvitop` by [@XuehaiPan](https://github.com/XuehaiPan).
|
||||
|
||||
------
|
||||
|
||||
[Unreleased]: https://github.com/XuehaiPan/nvitop/compare/v1.0.0...HEAD
|
||||
[1.0.0]: https://github.com/XuehaiPan/nvitop/releases/tag/v1.0.0
|
||||
11
README.md
11
README.md
|
|
@ -46,6 +46,7 @@ An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for G
|
|||
- [Process](#process)
|
||||
- [Host (inherited from psutil)](#host-inherited-from-psutil)
|
||||
- [Screenshots](#screenshots)
|
||||
- [Changelog](#changelog)
|
||||
- [License](#license)
|
||||
- [Copyright Notice](#copyright-notice)
|
||||
|
||||
|
|
@ -145,7 +146,7 @@ Run `bash install-nvidia-driver.sh --help` for more information.
|
|||
pipx run nvitop
|
||||
```
|
||||
|
||||
Install from PyPI ([](https://pypi.org/project/nvitop) / ):
|
||||
Install from PyPI ([](https://pypi.org/project/nvitop)):
|
||||
|
||||
```bash
|
||||
pip3 install --upgrade nvitop
|
||||
|
|
@ -157,7 +158,7 @@ Install from conda-forge ([):
|
||||
Install the latest version from GitHub ():
|
||||
|
||||
```bash
|
||||
pip3 install git+https://github.com/XuehaiPan/nvitop.git#egg=nvitop
|
||||
|
|
@ -1382,6 +1383,12 @@ Spectrum-like bar charts (with option <code>--colorful</code>):
|
|||
|
||||
------
|
||||
|
||||
## Changelog
|
||||
|
||||
See [CHANGELOG.md](https://github.com/XuehaiPan/nvitop/blob/HEAD/CHANGELOG.md).
|
||||
|
||||
------
|
||||
|
||||
## License
|
||||
|
||||
The source code of `nvitop` is dual-licensed by the **Apache License, Version 2.0 (Apache-2.0)** and **GNU General Public License, Version 3 (GPL-3.0)** . The `nvitop` CLI is released under the **GPL-3.0** license while the remaining part of `nvitop` is released under the **Apache-2.0** license. The license files can be found at [LICENSE](https://github.com/XuehaiPan/nvitop/blob/HEAD/LICENSE) (Apache-2.0) and [COPYING](https://github.com/XuehaiPan/nvitop/blob/HEAD/COPYING) (GPL-3.0).
|
||||
|
|
|
|||
|
|
@ -25,9 +25,6 @@ An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for G
|
|||
.. |Conda-forge Package| image:: https://img.shields.io/conda/v/conda-forge/nvitop?logo=condaforge
|
||||
.. _Conda-forge Package: https://anaconda.org/conda-forge/nvitop
|
||||
|
||||
.. |Package Status| image:: https://img.shields.io/pypi/status/nvitop?label=status
|
||||
.. _Package Status: https://pypi.org/project/nvitop
|
||||
|
||||
.. |Documentation Status| image:: https://img.shields.io/readthedocs/nvitop?label=docs&logo=readthedocs
|
||||
.. _Documentation Status: https://nvitop.readthedocs.io
|
||||
|
||||
|
|
@ -51,7 +48,7 @@ Installation
|
|||
|
||||
pipx run nvitop
|
||||
|
||||
Install from PyPI (|PyPI Package|_ / |Package Status|_):
|
||||
Install from PyPI (|PyPI Package|_):
|
||||
|
||||
.. code:: bash
|
||||
|
||||
|
|
@ -83,7 +80,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/v0.11.0
|
||||
.. |Commit Count| image:: https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.0.0
|
||||
|
||||
------
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
# ==============================================================================
|
||||
"""An interactive NVIDIA-GPU process viewer and beyond, the one-stop solution for GPU process management."""
|
||||
|
||||
__version__ = '0.11.0'
|
||||
__version__ = '1.0.0'
|
||||
__license__ = 'GPLv3'
|
||||
__author__ = __maintainer__ = 'Xuehai Pan'
|
||||
__email__ = 'XuehaiPan@pku.edu.cn'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue