We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea509d commit b45c315Copy full SHA for b45c315
Dockerfile
@@ -1,6 +1,6 @@
1
FROM python:3.9
2
LABEL "description"="Photos.network core system"
3
-LABEL "version"="0.2.0"
+LABEL "version"="0.2.1"
4
LABEL "maintainer"="github.com/photos-network"
5
6
WORKDIR /app
core/const.py
@@ -1,7 +1,7 @@
"""Constants used by Photos.network core."""
MAJOR_VERSION = 0
MINOR_VERSION = 2
-PATCH_VERSION = 0
+PATCH_VERSION = 1
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"
7
REQUIRED_PYTHON_VER = (3, 7, 1)
0 commit comments