Changed copyright date

This commit is contained in:
Sven Heidemann 2021-03-08 20:40:54 +01:00
parent 3e33a8a773
commit f931ccb7dd
19 changed files with 44 additions and 44 deletions

View File

@ -24,7 +24,7 @@
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="7e2256bc-a6b8-4880-83a6-8b0e3372d0a4" name="Default Changelist" comment="Bugfixes in build process"> <list default="true" id="7e2256bc-a6b8-4880-83a6-8b0e3372d0a4" name="Default Changelist" comment="Bugfixes in build process">
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" /> <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/cpl_cli/publish/publisher.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/cpl_cli/publish/publisher.py" afterDir="false" /> <change beforePath="$PROJECT_DIR$/cpl.json" beforeDir="false" afterPath="$PROJECT_DIR$/cpl.json" afterDir="false" />
</list> </list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -463,13 +463,6 @@
<option name="presentableId" value="Default" /> <option name="presentableId" value="Default" />
<updated>1605881914521</updated> <updated>1605881914521</updated>
</task> </task>
<task id="LOCAL-00055" summary="Added publish command to cli">
<created>1608138851088</created>
<option name="number" value="00055" />
<option name="presentableId" value="LOCAL-00055" />
<option name="project" value="LOCAL" />
<updated>1608138851088</updated>
</task>
<task id="LOCAL-00056" summary="Added imports to cli module"> <task id="LOCAL-00056" summary="Added imports to cli module">
<created>1608138986801</created> <created>1608138986801</created>
<option name="number" value="00056" /> <option name="number" value="00056" />
@ -806,7 +799,14 @@
<option name="project" value="LOCAL" /> <option name="project" value="LOCAL" />
<updated>1615231794961</updated> <updated>1615231794961</updated>
</task> </task>
<option name="localTasksCounter" value="104" /> <task id="LOCAL-00104" summary="Bugfixes in build process">
<created>1615231929105</created>
<option name="number" value="00104" />
<option name="presentableId" value="LOCAL-00104" />
<option name="project" value="LOCAL" />
<updated>1615231929106</updated>
</task>
<option name="localTasksCounter" value="105" />
<servers /> <servers />
</component> </component>
<component name="Vcs.Log.Tabs.Properties"> <component name="Vcs.Log.Tabs.Properties">

View File

@ -11,7 +11,7 @@
"description": "sh-edraft Common Python library", "description": "sh-edraft Common Python library",
"longDescription": "sh-edraft Common Python library", "longDescription": "sh-edraft Common Python library",
"url": "https://www.sh-edraft.de", "url": "https://www.sh-edraft.de",
"copyrightDate": "2020", "copyrightDate": "2020 - 2021",
"copyrightName": "sh-edraft.de", "copyrightName": "sh-edraft.de",
"licenseName": "MIT", "licenseName": "MIT",
"licenseDescription": "MIT, see LICENSE for more details.", "licenseDescription": "MIT, see LICENSE for more details.",

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'sh_cpl.cpl' __title__ = 'sh_cpl.cpl'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.application' __title__ = 'cpl.application'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.configuration' __title__ = 'cpl.configuration'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.console' __title__ = 'cpl.console'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.database' __title__ = 'cpl.database'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.database.connection' __title__ = 'cpl.database.connection'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.database.context' __title__ = 'cpl.database.context'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.dependency_injection' __title__ = 'cpl.dependency_injection'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.environment' __title__ = 'cpl.environment'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.logging' __title__ = 'cpl.logging'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.mailing' __title__ = 'cpl.mailing'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.time' __title__ = 'cpl.time'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl.utils' __title__ = 'cpl.utils'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'sh_cpl.cpl_cli' __title__ = 'sh_cpl.cpl_cli'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl_cli.command' __title__ = 'cpl_cli.command'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl_cli.configuration' __title__ = 'cpl_cli.configuration'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple

View File

@ -6,7 +6,7 @@ sh_cpl sh-edraft Common Python library
sh-edraft Common Python library sh-edraft Common Python library
:copyright: (c) 2020 sh-edraft.de :copyright: (c) 2020 - 2021 sh-edraft.de
:license: MIT, see LICENSE for more details. :license: MIT, see LICENSE for more details.
""" """
@ -14,7 +14,7 @@ sh-edraft Common Python library
__title__ = 'cpl_cli.publish' __title__ = 'cpl_cli.publish'
__author__ = 'Sven Heidemann' __author__ = 'Sven Heidemann'
__license__ = 'MIT' __license__ = 'MIT'
__copyright__ = 'Copyright (c) 2020 sh-edraft.de' __copyright__ = 'Copyright (c) 2020 - 2021 sh-edraft.de'
__version__ = '2021.4.1' __version__ = '2021.4.1'
from collections import namedtuple from collections import namedtuple