Skip to content

Commit 3481190

Browse files
committed
chore: Prepare release 2.1.1
- Update version in alire.toml (2.1.0 → 2.1.1) - Update version package (Patch 0 → 1) - Move [Unreleased] content to [2.1.1] in CHANGELOG - Update version references in documentation Release notes: - Added test build mode to functional.gpr for downstream compatibility
1 parent abafc7a commit 3481190

5 files changed

Lines changed: 18 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Changelog
22

3-
**Version:** 2.1.0
4-
**Date:** November 18, 2025
3+
**Version:** 2.1.1
4+
**Date:** November 19, 2025
55
**SPDX-License-Identifier:** BSD-3-Clause
66
**License File:** See the LICENSE file in the project root.
77
**Copyright:** © 2025 Michael Gardner, A Bit of Help, Inc.
@@ -17,16 +17,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1717
### Changed
1818

1919
### Added
20-
- **Test Build Mode**: Added "test" mode to functional.gpr for compatibility with downstream projects that use `-Xmode=test`
21-
- Supports test-specific compiler flags (debug info, assertions, validity checks)
22-
- Enables symbolic tracebacks in test mode
2320

2421
### Removed
2522

2623
### Fixed
2724

2825
---
2926

27+
## [2.1.1] - 2025-11-19
28+
29+
### Added
30+
- **Test Build Mode**: Added "test" mode to functional.gpr for compatibility with downstream projects that use `-Xmode=test`
31+
- Supports test-specific compiler flags (debug info, assertions, validity checks)
32+
- Enables symbolic tracebacks in test mode
33+
34+
---
35+
3036
## [2.1.0] - 2025-11-18
3137

3238
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Functional - Type-Safe Error Handling for Ada 2022
22

3-
**Version:** 2.1.0
4-
**Date:** November 18, 2025
3+
**Version:** 2.1.1
4+
**Date:** November 19, 2025
55
**SPDX-License-Identifier:** BSD-3-Clause<br>
66
**License File:** See the LICENSE file in the project root.<br>
77
**Copyright:** © 2025 Michael Gardner, A Bit of Help, Inc.<br>

alire.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "functional"
22
description = "Result, Option, Either types for type-safe error handling in Ada 2022"
3-
version = "2.1.0"
3+
version = "2.1.1"
44

55
authors = ["A Bit of Help, Inc. - Michael Gardner"]
66
maintainers = ["A Bit of Help, Inc. - Michael Gardner <mjgardner@abitofhelp.com>"]

docs/cheatsheet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Functional Library — Quick Reference
22

3-
**Version:** 2.1.0
4-
**Date:** November 18, 2025
3+
**Version:** 2.1.1
4+
**Date:** November 19, 2025
55
**SPDX-License-Identifier:** BSD-3-Clause
66
**License File:** See the LICENSE file in the project root.
77
**Copyright:** © 2025 Michael Gardner, A Bit of Help, Inc.

shared/src/functional-version.ads

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ package Functional.Version is
3131
-- Semantic Version Components
3232
Major : constant Natural := 2;
3333
Minor : constant Natural := 1;
34-
Patch : constant Natural := 0;
34+
Patch : constant Natural := 1;
3535

3636
-- Pre-release identifier (e.g., "dev", "alpha.1", "beta.2", "rc.1")
3737
-- Empty string for stable releases
@@ -42,7 +42,7 @@ package Functional.Version is
4242
Build_Metadata : constant String := "";
4343

4444
-- Full version string (e.g., "0.1.0-dev", "1.2.3", "2.0.0-rc.1+build.456")
45-
Version : constant String := "2.1.0";
45+
Version : constant String := "2.1.1";
4646

4747
-- Short version (no build metadata): "MAJOR.MINOR.PATCH[-PRERELEASE]"
4848
Short_Version : constant String :=

0 commit comments

Comments
 (0)