Skip to content

Commit

Permalink
cleanup and prepare v0.13.4 release (#1673)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikkonie committed May 15, 2023
1 parent 3c239b5 commit df3d4ef
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 13 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 project. Loosely follows the
`Keep a Changelog <http://keepachangelog.com/en/1.0.0/>`_ guidelines.


Unreleased
==========
v0.13.4 (2023-05-15)
====================

Changed
-------
Expand Down
3 changes: 2 additions & 1 deletion config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def set_logging(level=None):


# General API settings
SODAR_API_DEFAULT_VERSION = '0.13.3'
SODAR_API_DEFAULT_VERSION = '0.13.4'
SODAR_API_ALLOWED_VERSIONS = [
'0.7.0',
'0.7.1',
Expand All @@ -604,6 +604,7 @@ def set_logging(level=None):
'0.13.1',
'0.13.2',
'0.13.3',
'0.13.4',
]
SODAR_API_MEDIA_TYPE = 'application/vnd.bihealth.sodar+json'
SODAR_API_DEFAULT_HOST = env.url(
Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/api_examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ the SODAR API:
# Use core_headers for project management API endpoints
core_headers = {**auth_header, 'Accept': 'application/vnd.bihealth.sodar-core+json; version=0.12.0'}
# Use sodar_headers for sample sheet and landing zone API endpoints
sodar_headers = {**auth_header, 'Accept': 'application/vnd.bihealth.sodar+json; version=0.13.2'}
sodar_headers = {**auth_header, 'Accept': 'application/vnd.bihealth.sodar+json; version=0.13.4'}
.. note::

Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/api_landingzones.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ SODAR version:

.. code-block:: console
Accept: application/vnd.bihealth.sodar+json; version=0.13.3
Accept: application/vnd.bihealth.sodar+json; version=0.13.4
2 changes: 1 addition & 1 deletion docs_manual/source/api_samplesheets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ SODAR version:

.. code-block:: console
Accept: application/vnd.bihealth.sodar+json; version=0.13.3
Accept: application/vnd.bihealth.sodar+json; version=0.13.4
5 changes: 5 additions & 0 deletions docs_manual/source/app_samplesheets_create.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ In case of a successful import, you will be redirected to the main sample sheets
view, where you should see the study and assay tables for your imported sample
sheets.

.. note::

Importing ISA-Tab files with empty study or assay tables is not allowed.
Study tables must also contain source and sample materials.

Parser Warnings
---------------

Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/app_samplesheets_edit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ Names of all nodes must be filled out before the row can be saved into the
database. Exceptions for this include unnamed processes, which will be
autofilled, as well as *File* type materials which can remain unnamed.
Characteristics, factor values and other metadata fields can be filled or left
empty at tihs point. Their values can be edited freely just like any other cell
empty at this point. Their values can be edited freely just like any other cell
after saving the row.

.. hint::
Expand Down
2 changes: 1 addition & 1 deletion docs_manual/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
author = 'BIH Core Unit Bioinformatics'

# The full version, including alpha/beta/rc tags
release = '0.13.4-WIP'
release = '0.13.4'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions docs_manual/source/sodar_release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ list of changes in current and previous releases, see the
:ref:`full changelog<sodar_changelog>`.


v0.13.4 (WIP)
=============
v0.13.4 (2023-05-15)
====================

Release for minor sample sheet updates, maintenance and bug fixes.

Expand Down
4 changes: 2 additions & 2 deletions samplesheets/vueapp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion samplesheets/vueapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "samplesheets",
"version": "0.13.4-WIP",
"version": "0.13.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down

0 comments on commit df3d4ef

Please sign in to comment.