diff --git a/LICENSE b/LICENSE
index 0873f35..f6db814 100644
--- a/LICENSE
+++ b/LICENSE
@@ -1,6 +1,3 @@
-==============================================================================
-The Beman Project is under the Apache License v2.0 with LLVM Exceptions:
-==============================================================================
Apache License
Version 2.0, January 2004
@@ -220,15 +217,3 @@ conflicts with the conditions of the GPLv2, you may retroactively and
prospectively choose to deem waived or otherwise exclude such Section(s) of
the License, but only in their entirety and only with respect to the Combined
Software.
-
-==============================================================================
-Software from third parties included in the Beman Project:
-==============================================================================
-The Beman Project contains third party software which is under different license
-terms. All such code will be identified clearly using at least one of two
-mechanisms:
-1) It will be in a separate directory tree with its own `LICENSE.txt` or
- `LICENSE` file at the top containing the specific license and restrictions
- which apply to that software, or
-2) It will contain specific license and restriction terms at the top of every
- file.
diff --git a/README.md b/README.md
index a971815..bdcf1f9 100644
--- a/README.md
+++ b/README.md
@@ -5,15 +5,20 @@ SPDX-License-Identifier: 2.0 license with LLVM exceptions
-->
-
 [](https://coveralls.io/github/bemanproject/optional?branch=main)  [](https://godbolt.org/z/Gc6Y9j6zf)
+[](https://godbolt.org/z/Gc6Y9j6zf)
This repository implements `std::optional` extensions targeting C++26. The `beman.optional` library aims to evaluate the stability, the usability, and the performance of these proposed changes before they are officially adopted by WG21 into the C++ Working Draft. Additionally, it allows developers to use these new features before they are implemented in major standard library compilers.
-**Implements**: [Give *std::optional* Range Support (P3168R2)](https://wg21.link/P3168R2) and [`std::optional` (P2988R5)](https://wg21.link/P2988R5)
+**Implements**: [`std::optional` (P2988R12)](https://wg21.link/P2988R12) and
+[Give *std::optional* Range Support (P3168R2)](https://wg21.link/P3168R2).
**Status**: [Production ready. API may undergo changes.](https://github.com/bemanproject/beman/blob/main/docs/beman_library_maturity_model.md#production-ready-api-may-undergo-changes)
+## License
+
+`beman.exemplar` is licensed under the Apache License v2.0 with LLVM Exceptions.
+
## Examples
Full runable examples can be found in `examples/` - please check [./examples/README.md](./examples/README.md).
diff --git a/tests/beman/optional/CMakeLists.txt b/tests/beman/optional/CMakeLists.txt
index 470397e..b330147 100644
--- a/tests/beman/optional/CMakeLists.txt
+++ b/tests/beman/optional/CMakeLists.txt
@@ -6,12 +6,12 @@
target_sources(
beman_optional_test
PRIVATE
- optional.t.cpp
- optional_constexpr.t.cpp
- optional_monadic.t.cpp
- optional_range_support.t.cpp
- optional_ref.t.cpp
- optional_ref_monadic.t.cpp
+ optional.test.cpp
+ optional_constexpr.test.cpp
+ optional_monadic.test.cpp
+ optional_range_support.test.cpp
+ optional_ref.test.cpp
+ optional_ref_monadic.test.cpp
)
target_sources(
diff --git a/tests/beman/optional/optional.t.cpp b/tests/beman/optional/optional.test.cpp
similarity index 100%
rename from tests/beman/optional/optional.t.cpp
rename to tests/beman/optional/optional.test.cpp
diff --git a/tests/beman/optional/optional_constexpr.t.cpp b/tests/beman/optional/optional_constexpr.test.cpp
similarity index 100%
rename from tests/beman/optional/optional_constexpr.t.cpp
rename to tests/beman/optional/optional_constexpr.test.cpp
diff --git a/tests/beman/optional/optional_monadic.t.cpp b/tests/beman/optional/optional_monadic.test.cpp
similarity index 100%
rename from tests/beman/optional/optional_monadic.t.cpp
rename to tests/beman/optional/optional_monadic.test.cpp
diff --git a/tests/beman/optional/optional_range_support.t.cpp b/tests/beman/optional/optional_range_support.test.cpp
similarity index 100%
rename from tests/beman/optional/optional_range_support.t.cpp
rename to tests/beman/optional/optional_range_support.test.cpp
diff --git a/tests/beman/optional/optional_ref.t.cpp b/tests/beman/optional/optional_ref.test.cpp
similarity index 100%
rename from tests/beman/optional/optional_ref.t.cpp
rename to tests/beman/optional/optional_ref.test.cpp
diff --git a/tests/beman/optional/optional_ref_monadic.t.cpp b/tests/beman/optional/optional_ref_monadic.test.cpp
similarity index 100%
rename from tests/beman/optional/optional_ref_monadic.t.cpp
rename to tests/beman/optional/optional_ref_monadic.test.cpp