diff --git a/HISTORY.rst b/HISTORY.rst index 1be7f9c1..5e84bd99 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,6 +4,17 @@ Change Log All notable changes to this project will be documented in this file. This project adheres to `Semantic Versioning `__. +60.6.0 - 2025-01-08 +------------------- + +Added +~~~~~ +- Support for validation of string format in json schemas (https://bugzilla.mozilla.org/show_bug.cgi?id=1933683) + +Fixed +~~~~~ +- Update translations repo in constants (#676) + 60.5.0 - 2024-11-27 ------------------- diff --git a/src/scriptworker/version.py b/src/scriptworker/version.py index 54df694a..c3d0c765 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, 5, 0) +__version__ = (60, 6, 0) __version_string__ = get_version_string(__version__) diff --git a/version.json b/version.json index 9784a714..ce57d667 100644 --- a/version.json +++ b/version.json @@ -1,8 +1,8 @@ { "version":[ 60, - 5, + 6, 0 ], - "version_string":"60.5.0" + "version_string":"60.6.0" }