File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed
Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11FROM python:3.9
22LABEL "description" ="Photos.network core system"
3- LABEL "version" ="0.0.1 "
3+ LABEL "version" ="0.2.0 "
44LABEL "maintainer" ="github.com/photos-network"
55
66WORKDIR /app
Original file line number Diff line number Diff line change 11"""Constants used by Photos.network core."""
22MAJOR_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 } "
77REQUIRED_PYTHON_VER = (3 , 7 , 1 )
You can’t perform that action at this time.
0 commit comments