Skip to content

Commit fc4cf42

Browse files
committed
Bump version to 1.1.0 - macOS platform support
Changes in this release: - Added macOS platforms (darwin_x86_64, darwin_arm64) - Assembly compatibility for Mach-O object format - macOS builds integrated into CI workflow - Now supports 9 platforms total (4 Linux, 2 macOS, 3 Windows)
1 parent deeb975 commit fc4cf42

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [1.1.0] - 2025-11-16
99

1010
### Added
1111
- macOS platform support
@@ -25,6 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2525
- `tools/abiname.sh` improved to handle stale temp files on macOS
2626
- Release archives now contain 9 platform libraries (was 7)
2727

28+
### Fixed
29+
- CFI macro definitions in `switch_aarch64_gcc.S` for Linux builds
30+
2831
## [1.0.1] - 2025-11-16
2932

3033
### Changed
@@ -80,6 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8083
- GitHub Actions CI for automated building and testing
8184
- Visual Studio project files (VS2017, VS2019, VS2022)
8285

86+
[1.1.0]: https://github.com/stackless-dev/stackman/releases/tag/v1.1.0
87+
[1.0.1]: https://github.com/stackless-dev/stackman/releases/tag/v1.0.1
8388
[1.0.0]: https://github.com/stackless-dev/stackman/releases/tag/v1.0.0
8489
[0.2]: https://github.com/stackless-dev/stackman/releases/tag/v0.2
8590
[0.1]: https://github.com/stackless-dev/stackman/releases/tag/v0.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# stackman
44

5-
**Version 1.0.1**
5+
**Version 1.1.0**
66

77
Simple low-level stack manipulation API and implementation for common platforms
88

stackman/stackman.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
/* Version information */
66
#define STACKMAN_VERSION_MAJOR 1
7-
#define STACKMAN_VERSION_MINOR 0
8-
#define STACKMAN_VERSION_PATCH 1
7+
#define STACKMAN_VERSION_MINOR 1
8+
#define STACKMAN_VERSION_PATCH 0
99

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