From 68b45c336820b958ca73dbf86531d24f978a6d5c Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Mon, 14 Aug 2023 08:37:07 +0000 Subject: [PATCH] bump version 0.3.0 -> 0.3.1 --- pyproject.toml | 4 ++-- src/OptiHPLCHandler/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2de6f73..a6ae3cb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "Opti_HPLC_Handler" -version = "0.3.0" +version = "0.3.1" 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.3.0" +current_version = "0.3.1" 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 f80d747..9be41f9 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.3.0" +__version__ = "0.3.1" __all__ = ["DataField", "EmpowerConnection", "EmpowerHandler", "HPLCSetup", "Sample"]