Skip to content

Commit 48d345b

Browse files
committed
Bump version
1 parent c50186b commit 48d345b

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
types: [published]
66

77
env:
8-
VERSION: 0.8.0
8+
VERSION: 0.8.1
99

1010
permissions: write-all
1111

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
project = 'panda-py'
1010
copyright = '2023, Jean Elsner'
1111
author = 'Jean Elsner'
12-
release = '0.8.0'
12+
release = '0.8.1'
1313

1414
# -- General configuration ---------------------------------------------------
1515
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

pyproject.toml

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

55
[project]
66
name = "panda-python"
7-
version = "0.8.0"
7+
version = "0.8.1"
88
description = "Python bindings for the Panda robot"
99
requires-python = ">=3.7"
1010
dependencies = ["websockets>=11.0", "requests", "numpy"]

src/panda_py/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
'fk', 'ik', 'ik_full', 'Desk', 'TOKEN_PATH'
3333
]
3434

35-
__version__ = '0.8.0'
35+
__version__ = '0.8.1'
3636

3737
_logger = logging.getLogger('desk')
3838

src/panda_py/__init__.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,5 +234,5 @@ class Token:
234234

235235

236236
TOKEN_PATH: str = '~/.panda_py/token.conf'
237-
__version__: str = '0.8.0'
237+
__version__: str = '0.8.1'
238238
_logger: logging.Logger # value = <Logger desk (INFO)>

0 commit comments

Comments
 (0)