Skip to content

Commit

Permalink
Merge pull request #20 from photos-network/feature/release_bump
Browse files Browse the repository at this point in the history
bump version for release
  • Loading branch information
thebino authored May 6, 2021
2 parents fccb403 + a2e6764 commit 1ea509d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## [0.2.0] - 2020-05-06
### Added
- dynamic client loading from `configuration.json`
- simplified user management


## [0.0.1] - 2021-03-11
### Added
- integrated oauth authorization server
- dynamic addon loading with dedicated setup step
- async file logging
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.9
LABEL "description"="Photos.network core system"
LABEL "version"="0.0.1"
LABEL "version"="0.2.0"
LABEL "maintainer"="github.com/photos-network"

WORKDIR /app
Expand Down
4 changes: 2 additions & 2 deletions core/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Constants used by Photos.network core."""
MAJOR_VERSION = 0
MINOR_VERSION = 1
PATCH_VERSION = 1
MINOR_VERSION = 2
PATCH_VERSION = 0
__short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}"
__version__ = f"{__short_version__}.{PATCH_VERSION}"
REQUIRED_PYTHON_VER = (3, 7, 1)
Expand Down

0 comments on commit 1ea509d

Please sign in to comment.