From 6f3e4c0e9b804cf3d8e3b7497be163ed2cb341ef Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Sun, 13 Nov 2022 13:12:15 +0100 Subject: [PATCH] Release 3.2 --- Dockerfile | 2 +- pyproject.toml | 2 +- stacosys/__init__.py | 2 +- tests/test_stacosys.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 656358a..bea6e4f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.10-alpine -ARG STACOSYS_VERSION=3.1 +ARG STACOSYS_VERSION=3.2 ARG STACOSYS_FILENAME=stacosys-${STACOSYS_VERSION}-py3-none-any.whl RUN apk update && apk add bash && apk add wget diff --git a/pyproject.toml b/pyproject.toml index 889c98d..f5e7d61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "stacosys" -version = "3.1" +version = "3.2" description = "STAtic COmmenting SYStem" authors = ["Yax"] readme = "README.md" diff --git a/stacosys/__init__.py b/stacosys/__init__.py index f2dc0e4..080e846 100644 --- a/stacosys/__init__.py +++ b/stacosys/__init__.py @@ -1 +1 @@ -__version__ = "2.0" +__version__ = "3.2" diff --git a/tests/test_stacosys.py b/tests/test_stacosys.py index 5625c8d..060ca34 100644 --- a/tests/test_stacosys.py +++ b/tests/test_stacosys.py @@ -5,4 +5,4 @@ from stacosys import __version__ class StacosysTestCase(unittest.TestCase): def test_version(self): - self.assertEqual("2.0", __version__) + self.assertEqual("3.2", __version__)