diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c9fef60ea..67324cae1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 7.5.0 +current_version = 7.5.1 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P[A-z0-9-]+) diff --git a/api/server.py b/api/server.py index 1443b5b24..069663472 100644 --- a/api/server.py +++ b/api/server.py @@ -25,7 +25,7 @@ from db.python.utils import get_logger # This tag is automatically updated by bump2version -_VERSION = '7.5.0' +_VERSION = '7.5.1' logger = get_logger() diff --git a/deploy/python/version.txt b/deploy/python/version.txt index 18bb4182d..a5f017a0a 100644 --- a/deploy/python/version.txt +++ b/deploy/python/version.txt @@ -1 +1 @@ -7.5.0 +7.5.1 diff --git a/setup.py b/setup.py index 481a0ddce..8db6e0463 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name=PKG, # This tag is automatically updated by bump2version - version='7.5.0', + version='7.5.1', description='Python API for interacting with the Sample API system', long_description=readme, long_description_content_type='text/markdown', diff --git a/test/test_sequencing_groups.py b/test/test_sequencing_groups.py index 575a1b454..301072d63 100644 --- a/test/test_sequencing_groups.py +++ b/test/test_sequencing_groups.py @@ -127,10 +127,9 @@ async def test_auto_deprecation_of_old_sequencing_group(self): type='sequencing', external_ids={'second-key': 'second-sequencing-object'}, meta={ - 'second-sequencing-object' 'sequencing_type': 'genome', + 'sequencing_type': 'genome', 'sequencing_platform': 'short-read', 'sequencing_technology': 'illumina', - 'sequencing_type': 'genome', }, ), ], diff --git a/web/package.json b/web/package.json index eed2edd2d..a1353133a 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "metamist", - "version": "7.5.0", + "version": "7.5.1", "private": true, "dependencies": { "@apollo/client": "^3.11.5",