Skip to content

Commit

Permalink
ver: bump version to v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
XuehaiPan committed Feb 1, 2023
1 parent b20729a commit 4bb337d
Show file tree
Hide file tree
Showing 5 changed files with 54 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug-report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down Expand Up @@ -145,7 +146,7 @@ Run `bash install-nvidia-driver.sh --help` for more information.
pipx run nvitop
```

Install from PyPI ([![PyPI](https://img.shields.io/pypi/v/nvitop?label=pypi&logo=pypi)](https://pypi.org/project/nvitop) / ![Status](https://img.shields.io/pypi/status/nvitop?label=status)):
Install from PyPI ([![PyPI](https://img.shields.io/pypi/v/nvitop?label=pypi&logo=pypi)](https://pypi.org/project/nvitop)):

```bash
pip3 install --upgrade nvitop
Expand All @@ -157,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/v0.11.0)):
Install the latest version from GitHub (![Commit Count](https://img.shields.io/github/commits-since/XuehaiPan/nvitop/v1.0.0)):

```bash
pip3 install git+https://github.com/XuehaiPan/nvitop.git#egg=nvitop
Expand Down Expand Up @@ -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).
Expand Down
7 changes: 2 additions & 5 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -51,7 +48,7 @@ Installation
pipx run nvitop
Install from PyPI (|PyPI Package|_ / |Package Status|_):
Install from PyPI (|PyPI Package|_):

.. code:: bash
Expand Down Expand Up @@ -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

------

Expand Down
2 changes: 1 addition & 1 deletion nvitop/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4bb337d

Please sign in to comment.