File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 1.2.2] - 2026-06-05
11+
12+ ### Changed
13+ - Windows MSVC library projects now compile with ` /Zl ` to omit embedded default runtime library directives from generated object files
14+ - Windows static libraries no longer carry ` /DEFAULTLIB:"MSVCRTD" ` metadata, reducing unintended CRT coupling for downstream linkers
15+
1016## [ 1.2.1] - 2026-05-09
1117
1218### Changed
@@ -110,7 +116,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
110116- GitHub Actions CI for automated building and testing
111117- Visual Studio project files (VS2017, VS2019, VS2022)
112118
113- [ Unreleased ] : https://github.com/stackless-dev/stackman/compare/v1.2.1...HEAD
119+ [ Unreleased ] : https://github.com/stackless-dev/stackman/compare/v1.2.2...HEAD
120+ [ 1.2.2 ] : https://github.com/stackless-dev/stackman/releases/tag/v1.2.2
114121[ 1.2.1 ] : https://github.com/stackless-dev/stackman/releases/tag/v1.2.1
115122[ 1.2.0 ] : https://github.com/stackless-dev/stackman/releases/tag/v1.2.0
116123[ 1.1.0 ] : https://github.com/stackless-dev/stackman/releases/tag/v1.1.0
Original file line number Diff line number Diff line change 1111║ ║
1212║ Do you have a stack? Stackman is here to help. ║
1313║ ║
14- ║ v1.2.0 • 10 platforms • Stack switching simplified ║
14+ ║ v1.2.2 • 10 platforms • Stack switching simplified ║
1515║ ║
1616╚══════════════════════════════════════════════════════════════╝
1717```
Original file line number Diff line number Diff line change 55/* Version information */
66#define STACKMAN_VERSION_MAJOR 1
77#define STACKMAN_VERSION_MINOR 2
8- #define STACKMAN_VERSION_PATCH 1
8+ #define STACKMAN_VERSION_PATCH 2
99
1010/* Version as a string */
11- #define STACKMAN_VERSION "1.2.1 "
11+ #define STACKMAN_VERSION "1.2.2 "
1212
1313/* Version as a single number for comparisons (MMmmpp: Major, minor, patch) */
1414#define STACKMAN_VERSION_NUMBER ((STACKMAN_VERSION_MAJOR * 10000) + \
You can’t perform that action at this time.
0 commit comments