From ccf81b83636f129bbe23726248ae14a4e14566f7 Mon Sep 17 00:00:00 2001 From: Rahul Desai Date: Wed, 4 Sep 2024 10:22:42 -0700 Subject: [PATCH] bump nextflow base image to 1.1.8 --- CHANGELOG.md | 13 +++++++++++++ latch_cli/constants.py | 2 +- setup.py | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cbca6f3..eb756869 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,19 @@ Types of changes # Latch SDK Changelog +## 2.52.2 - 2024-09-04 + +### Changed + +* Nextflow + - Update `nextflow` base image to version `v1.1.8` + +## 2.52.1 - 2024-08-30 + +### Fixed + +* Move tty and termios imports to enable `latch cp` on Windows + ## 2.52.0 - 2024-08-30 ### Fixed diff --git a/latch_cli/constants.py b/latch_cli/constants.py index 9a768f0f..6144b550 100644 --- a/latch_cli/constants.py +++ b/latch_cli/constants.py @@ -22,7 +22,7 @@ class LatchConstants: base_image: str = ( "812206152185.dkr.ecr.us-west-2.amazonaws.com/latch-base:fe0b-main" ) - nextflow_latest_version: str = "v1.1.7" + nextflow_latest_version: str = "v1.1.8" file_max_size: int = 4 * Units.MiB file_chunk_size: int = 64 * Units.MiB diff --git a/setup.py b/setup.py index aca86d71..f97d2166 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name="latch", - version="v2.52.1", + version="v2.52.2", author_email="kenny@latch.bio", description="The Latch SDK", packages=find_packages(),