Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

**Version:** 4.1.0<br>
**Date:** 2025-12-18<br>
**Version:** 4.1.1<br>
**Date:** <YYYY-MM-DD pending tag><br>
**SPDX-License-Identifier:** BSD-3-Clause<br>
**License File:** See the LICENSE file in the project root<br>
**Copyright:** © 2025 Michael Gardner, A Bit of Help, Inc.<br>
**Copyright:** © 2025-2026 Michael Gardner, A Bit of Help, Inc.<br>
**Status:** Released

All notable changes to this project will be documented in this file.
Expand All @@ -14,6 +14,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

No unreleased changes yet.

---

## [4.1.1] - <YYYY-MM-DD pending tag>

### Fixed

- **Publishability of the Alire community-index source**: switch the
two `.gitmodules` submodule URLs from SSH (`git@github.com:...`)
back to HTTPS (`https://github.com/...`) so downstream consumers
and Alire's deployment of the published source can clone the
dev/tooling submodules without SSH credentials. Effectively
reverses the URL portion of `f4863eb chore(submodules): switch
submodule URLs from HTTPS to SSH`. Library API and runtime
behaviour are byte-identical to v4.1.0; this is a publishability
patch only.

---

## [4.1.0] - 2025-12-18
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

[![License](https://img.shields.io/badge/license-BSD--3--Clause-blue.svg)](LICENSE) [![Ada](https://img.shields.io/badge/Ada-2022-blue.svg)](https://ada-lang.io) [![SPARK](https://img.shields.io/badge/SPARK-Proved-green.svg)](https://www.adacore.com/about-spark) [![Alire](https://img.shields.io/badge/Alire-2.0+-blue.svg)](https://alire.ada.dev)

**Version:** 4.1.0<br>
**Date:** 2025-12-18<br>
**Version:** 4.1.1<br>
**Date:** <YYYY-MM-DD pending tag><br>
**SPDX-License-Identifier:** BSD-3-Clause<br>
**License File:** See the LICENSE file in the project root<br>
**Copyright:** © 2025 Michael Gardner, A Bit of Help, Inc.<br>
**Copyright:** © 2025-2026 Michael Gardner, A Bit of Help, Inc.<br>
**Status:** Released

## Overview
Expand Down Expand Up @@ -352,7 +352,7 @@ A Bit of Help, Inc.

## Project Status

**Status**: Production Ready (v4.1.0)
**Status**: Production Ready (v4.1.1)

- [x] Result[T,E] - 30 operations
- [x] Option[T] - 25 operations
Expand Down
2 changes: 1 addition & 1 deletion alire.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "functional"
description = "Functional Programming Library for Ada 2022"
version = "4.1.0"
version = "4.1.1"

authors = ["A Bit of Help, Inc. - Michael Gardner"]
maintainers = ["A Bit of Help, Inc. - Michael Gardner <mjgardner@abitofhelp.com>"]
Expand Down
6 changes: 3 additions & 3 deletions config/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Functional Library - Embedded Restrictions

**Version:** 4.1.0<br>
**Date:** 2025-12-18<br>
**Version:** 4.1.1<br>
**Date:** <YYYY-MM-DD pending tag><br>
**SPDX-License-Identifier:** BSD-3-Clause<br>
**License File:** See the LICENSE file in the project root<br>
**Copyright:** © 2025 Michael Gardner, A Bit of Help, Inc.<br>
**Copyright:** © 2025-2026 Michael Gardner, A Bit of Help, Inc.<br>
**Status:** Released

## Overview
Expand Down
4 changes: 2 additions & 2 deletions src/version/functional-version.ads
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ is
-- Semantic Version Components
Major : constant Natural := 4;
Minor : constant Natural := 1;
Patch : constant Natural := 0;
Patch : constant Natural := 1;

-- Pre-release identifier (e.g., "dev", "alpha.1", "beta.2", "rc.1")
-- Empty string for stable releases
Expand All @@ -44,7 +44,7 @@ is
Build_Metadata : constant String := "";

-- Full version string (e.g., "0.1.0-dev", "1.2.3", "2.0.0-rc.1+build.456")
Version : constant String := "4.1.0";
Version : constant String := "4.1.1";

-- Check if this is a pre-release version
function Is_Prerelease return Boolean is (Prerelease'Length > 0);
Expand Down
2 changes: 1 addition & 1 deletion test/alire.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "functional_tests"
description = "Test suite for functional"
version = "4.1.0"
version = "4.1.1"
authors = ["Michael Gardner"]
maintainers = ["Michael Gardner <mike@abitofhelp.com>"]
licenses = "BSD-3-Clause"
Expand Down