Skip to content

Commit 0951362

Browse files
committed
fix version number
1 parent 78e8628 commit 0951362

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.github/workflows/python-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- name: Set tag name
1818
id: tag_name
19-
run: echo "::set-output name=version::${GITHUB_REF#refs/tags/}"
19+
run: echo "::set-output name=version::${GITHUB_REF#refs/tags/v}"
2020
- name: Set up Python
2121
uses: actions/setup-python@v3
2222
with:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog for `gpuwidget`
22

3+
## v0.1.1
4+
5+
- Move LICENSE to CC0 1.0
6+
- Add border to the widget
7+
38
## v0.1.0
9+
410
- First release. Add support for jupyter notebook
511
- Return ascii gpu stat when not in jupyter environment

gpuwidget/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .core import live, once
22

33
__all__ = ["live", "once"]
4-
__version__ = "0.1.0"
4+
__version__ = "0.1.1"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gpuwidget"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "A Jupyter widget for monitoring NVIDIA GPUs."
99
readme = "README.md"
1010
authors = [

0 commit comments

Comments
 (0)