From 20d1cdf60923a15f798a35693b5532ea42f4369c Mon Sep 17 00:00:00 2001 From: AidanAbd Date: Tue, 26 Aug 2025 13:54:43 -0700 Subject: [PATCH] bump latch nf version --- CHANGELOG.md | 8 +++++++- pyproject.toml | 2 +- src/latch_cli/constants.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2af45ba7..4bd97605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,12 @@ Types of changes # Latch SDK Changelog +## 2.67.2 - 2025-08-26 + +### Dependencies + +* Latch nextflow version bumped to v3.0.6 (support `spot` argument for processes) + ## 2.67.1 - 2025-08-25 ### Added @@ -23,7 +29,7 @@ Types of changes * `latch dockerfile` now has two new options, `--output` and `--config-path` for choosing where to write the output Dockerfile and where to read/write the `.latch/config` used to generate the dockerfile * `latch nextflow generate-entrypoint` option `--destination` is now named `--output` -### Changes +### Changed * `latch dockerfile` now generates a `.dockerignore` always without asking for confirmation. diff --git a/pyproject.toml b/pyproject.toml index 0ca92bd5..3bf2f450 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,7 +12,7 @@ include = ["src/**/*.py", "src/**/py.typed", "src/latch_cli/services/init/*"] [project] name = "latch" -version = "2.67.1" +version = "2.67.2" description = "The Latch SDK" authors = [{ name = "Kenny Workman", email = "kenny@latch.bio" }] maintainers = [{ name = "Ayush Kamat", email = "ayush@latch.bio" }] diff --git a/src/latch_cli/constants.py b/src/latch_cli/constants.py index e47128ec..078a3cef 100644 --- a/src/latch_cli/constants.py +++ b/src/latch_cli/constants.py @@ -22,7 +22,7 @@ class LatchConstants: base_image: str = ( "812206152185.dkr.ecr.us-west-2.amazonaws.com/latch-base:cb01-main" ) - nextflow_latest_version: str = "v3.0.5" + nextflow_latest_version: str = "v3.0.6" file_max_size: int = 4 * Units.MiB file_chunk_size: int = 64 * Units.MiB