Skip to content

Commit

Permalink
Release 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kianby committed Nov 13, 2022
1 parent 6722a0d commit 6f3e4c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
2 changes: 1 addition & 1 deletion 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"
Expand Down
2 changes: 1 addition & 1 deletion stacosys/__init__.py
@@ -1 +1 @@
__version__ = "2.0"
__version__ = "3.2"
2 changes: 1 addition & 1 deletion tests/test_stacosys.py
Expand Up @@ -5,4 +5,4 @@

class StacosysTestCase(unittest.TestCase):
def test_version(self):
self.assertEqual("2.0", __version__)
self.assertEqual("3.2", __version__)

0 comments on commit 6f3e4c0

Please sign in to comment.