diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 15c8a814..975c3003 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,8 +5,8 @@ Changelog for the **SODAR Core** Django app package. Loosely follows the `Keep a Changelog `_ guidelines. -Unreleased -========== +v0.11.0 (2022-09-23) +==================== Added ----- diff --git a/README.rst b/README.rst index 3df3bcbb..437a8199 100644 --- a/README.rst +++ b/README.rst @@ -115,7 +115,7 @@ and breaking changes are possible. .. code-block:: console - pip install django-sodar-core==0.10.13 + pip install django-sodar-core==0.11.0 For installing a development version you can point your dependency to a specific commit ID in GitHub. Note that these versions may not be stable. diff --git a/codemeta.json b/codemeta.json index e16ed502..0bde72f4 100644 --- a/codemeta.json +++ b/codemeta.json @@ -40,12 +40,12 @@ ], "identifier": "https://doi.org/10.5281/zenodo.4269346", "codeRepository": "https://github.com/bihealth/sodar-core", - "datePublished": "2022-07-15", - "dateModified": "2022-07-15", + "datePublished": "2022-09-23", + "dateModified": "2022-09-23", "dateCreated": "2019-06-26", "description": "SODAR Core: A Django-based framework for scientific data management and analysis web apps", "keywords": "Python, Django, scientific data managmenent, software library", "license": "MIT", "title": "SODAR Core", - "version": "v0.10.13" + "version": "v0.11.0" } diff --git a/docs/source/app_projectroles_integration.rst b/docs/source/app_projectroles_integration.rst index 760b3c2f..2dbc1481 100644 --- a/docs/source/app_projectroles_integration.rst +++ b/docs/source/app_projectroles_integration.rst @@ -86,7 +86,7 @@ desired release tag or commit ID. .. code-block:: console -e git+https://github.com/mikkonie/django-plugins.git@42e86e7904e5c09f1da32173862b26843eda5dd8#egg=django-plugins - django-sodar-core==0.10.13 + django-sodar-core==0.11.0 Install the requirements for development: diff --git a/docs/source/conf.py b/docs/source/conf.py index 286392b9..5aed2dfa 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -29,7 +29,7 @@ # The short X.Y version version = '0.11' # The full version, including alpha/beta/rc tags -release = '0.11.0-WIP' +release = '0.11.0' # -- General configuration --------------------------------------------------- diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst index ef60a721..6e8b687d 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -17,7 +17,7 @@ the package is under active development and breaking changes are expected. .. code-block:: console - pip install django-sodar-core==0.10.13 + pip install django-sodar-core==0.11.0 Please note that the django-sodar-core package only installs :term:`Django apps`, which you need to include in a diff --git a/docs/source/major_changes.rst b/docs/source/major_changes.rst index 0a37e72c..bc27d86b 100644 --- a/docs/source/major_changes.rst +++ b/docs/source/major_changes.rst @@ -10,8 +10,8 @@ older SODAR Core version. For a complete list of changes in current and previous releases, see the :ref:`full changelog`. -v0.11.0 (WIP) -************* +v0.11.0 (2022-09-23) +******************** Release Highlights ================== diff --git a/projectroles/views_api.py b/projectroles/views_api.py index 8285daff..59bc9de2 100644 --- a/projectroles/views_api.py +++ b/projectroles/views_api.py @@ -84,30 +84,7 @@ CORE_API_DEFAULT_VERSION = re.match( r'^([0-9.]+)(?:[+|\-][\S]+)?$', core_version )[1] -CORE_API_ALLOWED_VERSIONS = [ - '0.7.2', - '0.8.0', - '0.8.1', - '0.8.2', - '0.8.3', - '0.8.4', - '0.9.0', - '0.9.1', - '0.10.0', - '0.10.1', - '0.10.2', - '0.10.3', - '0.10.4', - '0.10.5', - '0.10.6', - '0.10.7', - '0.10.8', - '0.10.9', - '0.10.10', - '0.10.11', - '0.10.12', - '0.10.13', -] +CORE_API_ALLOWED_VERSIONS = ['0.11.0'] # Local constants INVALID_PROJECT_TYPE_MSG = (