From ca833c20b2d649d863d61049dbb1880721a1c905 Mon Sep 17 00:00:00 2001 From: JeanElsner Date: Thu, 7 Mar 2024 18:05:50 +0100 Subject: [PATCH] Bump version --- .github/workflows/release.yml | 2 +- docs/conf.py | 2 +- pyproject.toml | 2 +- src/panda_py/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b470335..738a7d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,7 +5,7 @@ on: types: [published] env: - VERSION: 0.7.4 + VERSION: 0.7.5 permissions: write-all diff --git a/docs/conf.py b/docs/conf.py index 3625c8a..76dfda2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = 'panda-py' copyright = '2023, Jean Elsner' author = 'Jean Elsner' -release = '0.7.4' +release = '0.7.5' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 17b3cc0..0caf996 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "panda-python" -version = "0.7.4" +version = "0.7.5" description = "Python bindings for the Panda robot" requires-python = ">=3.7" dependencies = ["websockets>=11.0", "requests", "numpy"] diff --git a/src/panda_py/__init__.py b/src/panda_py/__init__.py index 9cf8c2d..f3d5715 100644 --- a/src/panda_py/__init__.py +++ b/src/panda_py/__init__.py @@ -32,7 +32,7 @@ 'fk', 'ik', 'ik_full', 'Desk', 'TOKEN_PATH' ] -__version__ = '0.7.4' +__version__ = '0.7.5' _logger = logging.getLogger('desk')