Skip to content

Commit 1ea509d

Browse files
authored
Merge pull request #20 from photos-network/feature/release_bump
bump version for release
2 parents fccb403 + a2e6764 commit 1ea509d

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
## [0.2.0] - 2020-05-06
2+
### Added
3+
- dynamic client loading from `configuration.json`
4+
- simplified user management
5+
6+
7+
## [0.0.1] - 2021-03-11
8+
### Added
9+
- integrated oauth authorization server
10+
- dynamic addon loading with dedicated setup step
11+
- async file logging

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM python:3.9
22
LABEL "description"="Photos.network core system"
3-
LABEL "version"="0.0.1"
3+
LABEL "version"="0.2.0"
44
LABEL "maintainer"="github.com/photos-network"
55

66
WORKDIR /app

core/const.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Constants used by Photos.network core."""
22
MAJOR_VERSION = 0
3-
MINOR_VERSION = 1
4-
PATCH_VERSION = 1
3+
MINOR_VERSION = 2
4+
PATCH_VERSION = 0
55
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
66
__version__ = f"{__short_version__}.{PATCH_VERSION}"
77
REQUIRED_PYTHON_VER = (3, 7, 1)

0 commit comments

Comments
 (0)