Skip to content

Commit

Permalink
prepare v0.13.2 release (#1275)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed Sep 21, 2023
1 parent b7ddadb commit 9f096a7
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ Changelog for the **SODAR Core** Django app package. Loosely follows the
`Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_ guidelines.


Unreleased
==========
v0.13.2 (2023-09-21)
====================

Added
-----
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ and breaking changes are possible.

.. code-block:: console
pip install django-sodar-core==0.13.1
pip install django-sodar-core==0.13.2
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.
Expand Down
6 changes: 3 additions & 3 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@
],
"identifier": "https://doi.org/10.5281/zenodo.4269346",
"codeRepository": "https://github.com/bihealth/sodar-core",
"datePublished": "2023-08-30",
"dateModified": "2023-08-30",
"datePublished": "2023-09-21",
"dateModified": "2023-09-21",
"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.13.0"
"version": "v0.13.2"
}
2 changes: 1 addition & 1 deletion docs/source/app_projectroles_api_rest.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ expected version.

.. code-block:: console
Accept: application/vnd.bihealth.sodar-core+json; version=0.13.1
Accept: application/vnd.bihealth.sodar-core+json; version=0.13.2
.. note::

Expand Down
2 changes: 1 addition & 1 deletion docs/source/app_projectroles_integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ release tag or commit ID.

.. code-block:: console
django-sodar-core==0.13.1
django-sodar-core==0.13.2
Install the requirements for development:

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
# The short X.Y version
version = '0.13'
# The full version, including alpha/beta/rc tags
release = '0.13.2-WIP'
release = '0.13.2'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/getting_started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ the package is under active development and breaking changes are expected.

.. code-block:: console
pip install django-sodar-core==0.13.1
pip install django-sodar-core==0.13.2
Please note that the django-sodar-core package only installs
:term:`Django apps<Django App>`, which you need to include in a
Expand Down
2 changes: 1 addition & 1 deletion projectroles/views_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
CORE_API_DEFAULT_VERSION = re.match(
r'^([0-9.]+)(?:[+|\-][\S]+)?$', core_version
)[1]
CORE_API_ALLOWED_VERSIONS = ['0.13.0', '0.13.1']
CORE_API_ALLOWED_VERSIONS = ['0.13.0', '0.13.1', '0.13.2']

# Local constants
INVALID_PROJECT_TYPE_MSG = (
Expand Down

0 comments on commit 9f096a7

Please sign in to comment.