From 870d85c2a63ae1740f4b915df5956aa0c3af35c1 Mon Sep 17 00:00:00 2001 From: Neil Lei Date: Mon, 5 Aug 2024 19:45:40 +0800 Subject: [PATCH] version: bump to v0.2.3 --- async_pyserial/__init__.py | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/async_pyserial/__init__.py b/async_pyserial/__init__.py index ab65d23..caace5f 100644 --- a/async_pyserial/__init__.py +++ b/async_pyserial/__init__.py @@ -4,7 +4,7 @@ from async_pyserial.backend import set_async_worker -__version__ = '0.2.2' +__version__ = '0.2.3' VERSION = __version__ diff --git a/docs/source/conf.py b/docs/source/conf.py index c452459..c6c52e6 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -9,7 +9,7 @@ project = 'async-pyserial' copyright = '2024, Neil Lei' author = 'Neil Lei' -release = '0.2.2' +release = '0.2.3' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 4f8b53e..699babe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "async_pyserial" -version = "0.2.2" +version = "0.2.3" description = "Python bindings for a C++ serial port library" authors = ["Neil Lei "] readme = "README.rst" @@ -10,7 +10,7 @@ python = "^3.10" [project] name = "async_pyserial" -version = "0.2.2" +version = "0.2.3" description = "Python bindings for a C++ serial port library" authors = [ {name = "Neil Lei", email = "qwe17235@gmail.com"} diff --git a/setup.py b/setup.py index 9e10282..f761277 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ def get_pybind_include(user=False): setup( name='async_pyserial', - version='0.2.2', + version='0.2.3', author='Neil Lei', author_email='qwe17235@gmail.com', description='Python bindings for a C++ serial port library',