Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • AlekSIS/official/AlekSIS-App-Resint
  • sunweaver/AlekSIS-App-Resint
2 results
Show changes
Commits on Source (4)
......@@ -9,6 +9,9 @@ and this project adheres to `Semantic Versioning`_.
Unreleased
----------
`2.2`_ - 2022-06-23
-------------------
Added
~~~~~
......@@ -69,3 +72,4 @@ Added
.. _2.0b1: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.0b1
.. _2.0: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.0
.. _2.1: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.1
.. _2.2: https://edugit.org/AlekSIS/Official/AlekSIS/-/tags/2.2
......@@ -21,8 +21,9 @@ Licence
::
Copyright © 2018, 2019, 2020, 2021 Jonathan Weth <dev@jonathanweth.de>
Copyright © 2020, 2021 Frank Poetzsch-Heffter <p-h@katharineum.de>
Copyright © 2019 Julian Leucker <leuckeju@katharineum.de>
Copyright © 2020, 2021 Frank Poetzsch-Heffter <p-h@katharineum.de>
Copyright © 2022 Dominik George <dominik.george@teckids.org>
Licenced under the EUPL, version 1.2 or later
......
......@@ -16,8 +16,9 @@ class ResintConfig(AppConfig):
licence = "EUPL-1.2+"
copyright_info = (
([2018, 2019, 2020, 2021], "Jonathan Weth", "dev@jonathanweth.de"),
([2020, 2021], "Frank Poetzsch-Heffter", "p-h@katharineum.de"),
([2019], "Julian Leucker", "leuckeju@katharineum.de"),
([2020, 2021], "Frank Poetzsch-Heffter", "p-h@katharineum.de"),
([2022], "Dominik George", "dominik.george@teckids.org"),
)
@classmethod
......
......@@ -29,9 +29,9 @@ copyright = "2018-2022 The AlekSIS team"
author = "The AlekSIS Team"
# The short X.Y version
version = "2.1"
version = "2.2"
# The full version, including alpha/beta/rc tags
release = "2.1.1.dev0"
release = "2.2.1.dev0"
# -- General configuration ---------------------------------------------------
......
[tool.poetry]
name = "AlekSIS-App-Resint"
version = "2.1.1.dev0"
version = "2.2.1.dev0"
packages = [
{ include = "aleksis" }
]
......