Skip to content

Commit d31b77b

Browse files
committed
Bump version to 1.2.1
Prepare patch release 1.2.1 by updating version macros/string and moving Unreleased entries into a dated 1.2.1 changelog section.
1 parent 060e4f6 commit d31b77b

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.1] - 2026-05-09
11+
1012
### Changed
1113
- CI: pinned Windows runner to `windows-2022` (from `windows-latest`) to keep VS2022 v143 toolset availability stable for ARM64 builds
1214

@@ -108,7 +110,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
108110
- GitHub Actions CI for automated building and testing
109111
- Visual Studio project files (VS2017, VS2019, VS2022)
110112

111-
[Unreleased]: https://github.com/stackless-dev/stackman/compare/v1.2.0...HEAD
113+
[Unreleased]: https://github.com/stackless-dev/stackman/compare/v1.2.1...HEAD
114+
[1.2.1]: https://github.com/stackless-dev/stackman/releases/tag/v1.2.1
112115
[1.2.0]: https://github.com/stackless-dev/stackman/releases/tag/v1.2.0
113116
[1.1.0]: https://github.com/stackless-dev/stackman/releases/tag/v1.1.0
114117
[1.0.1]: https://github.com/stackless-dev/stackman/releases/tag/v1.0.1

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 0
8+
#define STACKMAN_VERSION_PATCH 1
99

1010
/* Version as a string */
11-
#define STACKMAN_VERSION "1.2.0"
11+
#define STACKMAN_VERSION "1.2.1"
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)