| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent deeb975 commit fc4cf42
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. | |||
| 5 | 5 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | |
| 6 | 6 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | |
| 7 | 7 | ||
| 8 | - ## [Unreleased] | ||
| 8 | + ## [1.1.0] - 2025-11-16 | ||
| 9 | 9 | ||
| 10 | 10 | ### Added | |
| 11 | 11 | - macOS platform support | |
@@ -25,6 +25,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
| 25 | 25 | - `tools/abiname.sh` improved to handle stale temp files on macOS | |
| 26 | 26 | - Release archives now contain 9 platform libraries (was 7) | |
| 27 | 27 | ||
| 28 | + ### Fixed | ||
| 29 | + - CFI macro definitions in `switch_aarch64_gcc.S` for Linux builds | ||
| 30 | + | ||
| 28 | 31 | ## [1.0.1] - 2025-11-16 | |
| 29 | 32 | ||
| 30 | 33 | ### Changed | |
@@ -80,6 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 | |||
| 80 | 83 | - GitHub Actions CI for automated building and testing | |
| 81 | 84 | - Visual Studio project files (VS2017, VS2019, VS2022) | |
| 82 | 85 | ||
| 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 | ||
| 83 | 88 | [1.0.0]: https://github.com/stackless-dev/stackman/releases/tag/v1.0.0 | |
| 84 | 89 | [0.2]: https://github.com/stackless-dev/stackman/releases/tag/v0.2 | |
| 85 | 90 | [0.1]: https://github.com/stackless-dev/stackman/releases/tag/v0.1 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | 3 | # stackman | |
| 4 | 4 | ||
| 5 | - **Version 1.0.1** | ||
| 5 | + **Version 1.1.0** | ||
| 6 | 6 | ||
| 7 | 7 | Simple low-level stack manipulation API and implementation for common platforms | |
| 8 | 8 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,11 +4,11 @@ | |||
| 4 | 4 | ||
| 5 | 5 | /* Version information */ | |
| 6 | 6 | #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 | ||
| 9 | 9 | ||
| 10 | 10 | /* Version as a string */ | |
| 11 | - #define STACKMAN_VERSION "1.0.1" | ||
| 11 | + #define STACKMAN_VERSION "1.1.0" | ||
| 12 | 12 | ||
| 13 | 13 | /* Version as a single number for comparisons (MMmmpp: Major, minor, patch) */ | |
| 14 | 14 | #define STACKMAN_VERSION_NUMBER ((STACKMAN_VERSION_MAJOR * 10000) + \ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments