Skip to content

Commit

Permalink
Bump version: 7.5.0 → 7.5.1
Browse files Browse the repository at this point in the history
(Also fix test_sequencing_groups.py copy-pasto and remove previous fix.)
  • Loading branch information
jmarshall authored Nov 5, 2024
1 parent 57ebb91 commit ca01532
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 7.5.0
current_version = 7.5.1
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>[A-z0-9-]+)
Expand Down
2 changes: 1 addition & 1 deletion api/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion deploy/python/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.5.0
7.5.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
3 changes: 1 addition & 2 deletions test/test_sequencing_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
},
),
],
Expand Down
2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "metamist",
"version": "7.5.0",
"version": "7.5.1",
"private": true,
"dependencies": {
"@apollo/client": "^3.11.5",
Expand Down

0 comments on commit ca01532

Please sign in to comment.