Skip to content

Commit 9a950af

Browse files
committed
Bump version to 1.2.2
1 parent f6b7b93 commit 9a950af

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
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
```

stackman/stackman.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
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) + \

0 commit comments

Comments
 (0)