From 3ea945e5fd5dc6d176a8b566b7052d37b685b190 Mon Sep 17 00:00:00 2001 From: Hudson Brendon Date: Fri, 31 Jan 2025 14:58:56 -0300 Subject: [PATCH] fix: bump version to 0.1.1 --- pyproject.toml | 2 +- solar_plus_intelbras/__init__.py | 2 +- tests/test_version.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b29c8a7..5b153e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "solar-plus-intelbras" -version = "0.1.0" +version = "0.1.1" description = "A wrapper for api solar plus intelbras" authors = ["Hudson Brendon "] readme = "README.md" diff --git a/solar_plus_intelbras/__init__.py b/solar_plus_intelbras/__init__.py index 466b157..f668e65 100644 --- a/solar_plus_intelbras/__init__.py +++ b/solar_plus_intelbras/__init__.py @@ -1,3 +1,3 @@ from .solar_plus_intelbras import SolarPlusIntelbras # noqa -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/tests/test_version.py b/tests/test_version.py index 29ef76c..896e171 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version() -> None: - assert __version__ == "0.1.0" + assert __version__ == "0.1.1"