From d573272fd33a630c04ef434a541e420c142f3510 Mon Sep 17 00:00:00 2001 From: Julien Cristau Date: Wed, 15 Jan 2025 14:54:51 +0100 Subject: [PATCH] chore: scriptworker 60.6.1 (#680) --- HISTORY.rst | 7 +++++++ src/scriptworker/version.py | 2 +- version.json | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5e84bd99..d7da6ece 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,13 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. +60.6.1 - 2025-01-15 +------------------- + +Fixed +~~~~~ +- Deadlock when the script standard output or error contains a line longer than 64kB (https://bugzilla.mozilla.org/show_bug.cgi?id=1941166) + 60.6.0 - 2025-01-08 ------------------- diff --git a/src/scriptworker/version.py b/src/scriptworker/version.py index c3d0c765..c9b160b9 100755 --- a/src/scriptworker/version.py +++ b/src/scriptworker/version.py @@ -54,7 +54,7 @@ def get_version_string(version: Union[ShortVerType, LongVerType]) -> str: # 1}}} # Semantic versioning 2.0.0 http://semver.org/ -__version__ = (60, 6, 0) +__version__ = (60, 6, 1) __version_string__ = get_version_string(__version__) diff --git a/version.json b/version.json index ce57d667..89a92f0e 100644 --- a/version.json +++ b/version.json @@ -2,7 +2,7 @@ "version":[ 60, 6, - 0 + 1 ], - "version_string":"60.6.0" + "version_string":"60.6.1" }