# HG changeset patch # User jfp <jf.pieronne@laposte.net> # Date 1738327800 -3600 # Fri Jan 31 13:50:00 2025 +0100 # Node ID 908ca6ed8833163eaa1afe0233f043abe9592766 # Parent 181aebe205c5ba36f0b8561f8bb4bab7d468849d Set version to 1.1 diff --git a/python/local/ovms_module/ovms/__init__.py b/python/local/ovms_module/ovms/__init__.py --- a/python/local/ovms_module/ovms/__init__.py +++ b/python/local/ovms_module/ovms/__init__.py @@ -23,7 +23,7 @@ """ vms Extension Series for Python""" # vms Extension Series version number # (note that subpackages have their own version number) -__version__ = '1.0' +__version__ = '1.1' # Copyright notice string __copyright__ = """\ diff --git a/python/local/ovms_module/pyproject.toml b/python/local/ovms_module/pyproject.toml --- a/python/local/ovms_module/pyproject.toml +++ b/python/local/ovms_module/pyproject.toml @@ -7,7 +7,7 @@ [project] name = "ovms" -version = "0.4.0" +version = "1.1.0" description = "ovms extension for VSI Python 3" readme = "README.md" requires-python = ">= 3.10" diff --git a/python/local/ovms_module/setup.py b/python/local/ovms_module/setup.py --- a/python/local/ovms_module/setup.py +++ b/python/local/ovms_module/setup.py @@ -11,7 +11,7 @@ # this will be the package name you will see name = 'ovms', # some version number you may wish to add - increment this after every update - version='0.4', + version='1.1', package_data={'': ['*.exe', '*.pyi']}, distclass=BinaryDistribution,