Bump version pre-release

This commit is contained in:
Mark VanderVoord
2026-07-07 14:47:14 -04:00
parent 9b80991430
commit 9f8694c04c
2 changed files with 25 additions and 2 deletions
+23
View File
@@ -13,6 +13,29 @@ Prior to 2008, the project was an internal project and not released to the publi
## Log
### Unity 2.7.0 (July 2026)
New Features:
- Add option to test runner generator to shuffle test order
- Optional new detail "stack" report on failures
Significant Bugfixes:
- Default gcc and clang targets can run on non-x86 without modification (#778)
- Backslashes handled properly in generator (#837)
- Floating point avoids use of == and != always (#819)
- Added not equal for string, memory, and pointer handling (#811)
- display of failures fixed on ARM processors, particularly with arrays (#807)
- fixed each-equal assertion for memory (#797)
- fix many warnings.
Other:
- Clean up core targets for simpler use on host environments
- Documentation improvements
### Unity 2.6.1 (Jan 2025)
New Features:
+2 -2
View File
@@ -10,8 +10,8 @@
#define UNITY
#define UNITY_VERSION_MAJOR 2
#define UNITY_VERSION_MINOR 6
#define UNITY_VERSION_BUILD 3
#define UNITY_VERSION_MINOR 7
#define UNITY_VERSION_BUILD 0
#define UNITY_VERSION ((UNITY_VERSION_MAJOR << 16) | (UNITY_VERSION_MINOR << 8) | UNITY_VERSION_BUILD)
#ifdef __cplusplus