Skip to content

Commit cbcd08f

Browse files
committed
Add release notes and bump version.
1 parent 1a29024 commit cbcd08f

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

docs/UnityChangeLog.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,23 @@ Prior to 2008, the project was an internal project and not released to the publi
1313

1414
## Log
1515

16-
### Unity 2.6.0 ()
16+
### Unity 2.6.1 (Jan 2025)
17+
18+
New Features:
19+
20+
- Add `-n` comand line option as strict matcher again
21+
22+
Significant Bugfixes:
23+
24+
- Protect against problems when mis-matched command line options selected
25+
26+
Other:
27+
28+
- Protect against Conversion warnings in gcc
29+
- Remove Redundant line-casts
30+
- Make more internal functions static
31+
32+
### Unity 2.6.0 (Mar 2024)
1733

1834
New Features:
1935

src/unity.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
#define UNITY_VERSION_MAJOR 2
1313
#define UNITY_VERSION_MINOR 6
14-
#define UNITY_VERSION_BUILD 0
14+
#define UNITY_VERSION_BUILD 1
1515
#define UNITY_VERSION ((UNITY_VERSION_MAJOR << 16) | (UNITY_VERSION_MINOR << 8) | UNITY_VERSION_BUILD)
1616

1717
#ifdef __cplusplus

0 commit comments

Comments
 (0)