From 2e4bfab12396b17c897f451e84996ea71d58ecb4 Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 21 Aug 2023 13:35:37 +0000 Subject: [PATCH] bump version 0.5.0 -> 0.6.0 --- pyproject.toml | 4 ++-- src/OptiHPLCHandler/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 733b614..1bc7f95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "Opti_HPLC_Handler" -version = "0.5.0" +version = "0.6.0" description = "Simplified proxy API for interacting with the Waters Empower Web API." readme = "README.md" requires-python = ">=3.8" @@ -85,7 +85,7 @@ pythonpath = [ ] [tool.bumpver] -current_version = "0.5.0" +current_version = "0.6.0" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" tag_message = "{new_version}" diff --git a/src/OptiHPLCHandler/__init__.py b/src/OptiHPLCHandler/__init__.py index 9534a59..fabc5f3 100644 --- a/src/OptiHPLCHandler/__init__.py +++ b/src/OptiHPLCHandler/__init__.py @@ -2,6 +2,6 @@ from .empower_api_core import EmpowerConnection from .empower_handler import EmpowerHandler -__version__ = "0.5.0" +__version__ = "0.6.0" __all__ = ["DataField", "EmpowerConnection", "EmpowerHandler", "HPLCSetup", "Sample"]