Skip to content

Commit

Permalink
Merge pull request #632 from populationgenomics/dev
Browse files Browse the repository at this point in the history
Release 6.5.1
  • Loading branch information
michael-harper authored Dec 11, 2023
2 parents 7db6896 + ad85785 commit 5beb48d
Show file tree
Hide file tree
Showing 7 changed files with 7 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 = 6.5.0
current_version = 6.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 @@ -20,7 +20,7 @@
from api.settings import PROFILE_REQUESTS, SKIP_DATABASE_CONNECTION

# This tag is automatically updated by bump2version
_VERSION = '6.5.0'
_VERSION = '6.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 @@
6.5.0
6.5.1
2 changes: 1 addition & 1 deletion scripts/create_test_subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,7 +589,7 @@ def transfer_participants(

participants_to_transfer = []
for participant in participant_data:
if participant['externalId'] in list(target_project_pid_map.keys()):
if participant['externalId'] in target_project_pid_map:
# Participants with id field will be updated & those without will be inserted
participant['id'] = target_project_pid_map[participant['externalId']]
else:
Expand Down
2 changes: 1 addition & 1 deletion scripts/parse_sample_file_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
help='The metamist project to import manifest into',
)
@click.option('--default-sample-type', default='blood')
@click.option('--default-sequence-type', default='wgs')
@click.option('--default-sequencing-type', default='wgs')
@click.option('--default-sequence-technology', default='short-read')
@click.option(
'--confirm', is_flag=True, help='Confirm with user input before updating server'
Expand Down
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='6.5.0',
version='6.5.1',
description='Python API for interacting with the Sample API system',
long_description=readme,
long_description_content_type='text/markdown',
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": "6.5.0",
"version": "6.5.1",
"private": true,
"dependencies": {
"@apollo/client": "^3.7.3",
Expand Down

0 comments on commit 5beb48d

Please sign in to comment.