From cbcd08fa7de711053a3deec6339ee89cad5d2697 Mon Sep 17 00:00:00 2001 From: Mark VanderVoord Date: Wed, 1 Jan 2025 11:53:54 -0500 Subject: [PATCH] Add release notes and bump version. --- docs/UnityChangeLog.md | 18 +++++++++++++++++- src/unity.h | 2 +- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/docs/UnityChangeLog.md b/docs/UnityChangeLog.md index f93f9ec6..a9fec00f 100644 --- a/docs/UnityChangeLog.md +++ b/docs/UnityChangeLog.md @@ -13,7 +13,23 @@ Prior to 2008, the project was an internal project and not released to the publi ## Log -### Unity 2.6.0 () +### Unity 2.6.1 (Jan 2025) + +New Features: + + - Add `-n` comand line option as strict matcher again + +Significant Bugfixes: + + - Protect against problems when mis-matched command line options selected + +Other: + + - Protect against Conversion warnings in gcc + - Remove Redundant line-casts + - Make more internal functions static + +### Unity 2.6.0 (Mar 2024) New Features: diff --git a/src/unity.h b/src/unity.h index e390ff16..9e2a97b7 100644 --- a/src/unity.h +++ b/src/unity.h @@ -11,7 +11,7 @@ #define UNITY_VERSION_MAJOR 2 #define UNITY_VERSION_MINOR 6 -#define UNITY_VERSION_BUILD 0 +#define UNITY_VERSION_BUILD 1 #define UNITY_VERSION ((UNITY_VERSION_MAJOR << 16) | (UNITY_VERSION_MINOR << 8) | UNITY_VERSION_BUILD) #ifdef __cplusplus