From 89992e56d6066b8675d871424790a06e4808f3ac Mon Sep 17 00:00:00 2001 From: Ben Hearsum Date: Fri, 12 Jul 2024 07:26:07 -0400 Subject: [PATCH] chore: version bump scriptworker 60.2.0 Arguably the projects.yml changed could make this 61.0.0? Except that major change is in another repo. I can do a major bump here if anyone cares. --- HISTORY.rst | 12 ++++++++++++ src/scriptworker/version.py | 2 +- version.json | 4 ++-- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 744a2eee..2d91256f 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,18 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. +60.2.0 - 2024-07-12 +------------------- + +Added +~~~~~ +- Set User-Agent in http requests (#661) +- Support github-pull-request-untrusted in CoT verification (https://bugzilla.mozilla.org/show_bug.cgi?id=1906748) + +Fixed +~~~~~ +- Pull project from the default branch in projects.yml (#665) + 60.1.0 - 2024-06-24 ------------------- diff --git a/src/scriptworker/version.py b/src/scriptworker/version.py index 8cc58cd2..60e5bd57 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, 1, 0) +__version__ = (60, 2, 0) __version_string__ = get_version_string(__version__) diff --git a/version.json b/version.json index 7658862e..82b29d27 100644 --- a/version.json +++ b/version.json @@ -1,8 +1,8 @@ { "version":[ 60, - 1, + 2, 0 ], - "version_string":"60.1.0" + "version_string":"60.2.0" }