Skip to content

Commit

Permalink
Merge branch 'master' into add_scout_for_tomte
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick authored Aug 29, 2024
2 parents 310a9f6 + 7caf7fb commit eb23482
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 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 = 62.2.0
current_version = 62.2.1
commit = True
tag = True
tag_name = v{new_version}
Expand Down
2 changes: 1 addition & 1 deletion cg/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__title__ = "cg"
__version__ = "62.2.0"
__version__ = "62.2.1"
6 changes: 5 additions & 1 deletion cg/cli/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ def get_sequencing_run(context: click.Context, samples: bool, flow_cell_id: str)
sequencing_run.device.internal_id,
sequencing_run.sequencer_type,
sequencing_run.sequencer_name,
sequencing_run.sequencing_started_at.date(),
(
sequencing_run.sequencing_started_at.date()
if sequencing_run.sequencing_started_at
else "Not available"
),
sequencing_run.sequencing_completed_at.date(),
sequencing_run.archived_at.date() if sequencing_run.archived_at else "No",
sequencing_run.data_availability,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "cg"
version = "62.2.0"
version = "62.2.1"
description = "Clinical Genomics command center"
authors = ["Clinical Genomics <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit eb23482

Please sign in to comment.