Skip to content

Commit 4f8287f

Browse files
committed
Rename other instances of Optional26
Beman.Optional26 becomes beman.optional26, and Optional26 becomes optional26.
1 parent 0225849 commit 4f8287f

File tree

10 files changed

+17
-17
lines changed

10 files changed

+17
-17
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# Beman.Optional26: C++26 Extensions for std::optional
1+
# beman.optional26: C++26 Extensions for std::optional
22

33
<!--
44
SPDX-License-Identifier: 2.0 license with LLVM exceptions
55
-->
66

77
![CI Tests](https://github.com/beman-project/Optional26/actions/workflows/ci.yml/badge.svg)
88

9-
This repository implements `std::optional` extensions targeting C++26. The `Beman.Optional26` 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.
9+
This repository implements `std::optional` extensions targeting C++26. The `beman.optional26` 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.
1010

1111
**Implements**:
1212

@@ -15,7 +15,7 @@ This repository implements `std::optional` extensions targeting C++26. The `Bema
1515

1616
## Table of Contents
1717

18-
* [Beman.Optional26: C++26 Extensions for std::optional](#bemanoptional26-c26-extensions-for-stdoptional)
18+
* [beman.optional26: C++26 Extensions for std::optional](#bemanoptional26-c26-extensions-for-stdoptional)
1919
* [Table of Contents](#table-of-contents)
2020
* [License](#license)
2121
* [Examples](#examples)
@@ -232,8 +232,8 @@ $ cmake --build .build --config Asan --target all -- -k 0
232232

233233
# Check that tests are not built/installed.
234234
$ ctest --build-config Asan --output-on-failure --test-dir .build
235-
Internal ctest changing into directory: /path/to/Beman.Optional26/.build
236-
Test project /path/to/Beman.Optional26/.build
235+
Internal ctest changing into directory: /path/to/beman.optional26/.build
236+
Test project /path/to/beman.optional26/.build
237237
No tests were found!!!
238238
```
239239

cmake/gcovr.cfg.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ gcov-parallel = yes
77
html-theme = github.dark-blue
88
html-self-contained = yes
99
print-summary = yes
10-
filter = .*/Beman/Optional26/.*
10+
filter = .*/beman/optional26/.*
1111
exclude = .*\.t\.cpp

docs/debug-ci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Stage Job ID Job name Workflow name Workflow file Events
2222
0 build ${{ matrix.config.name }} CI Tests ci.yml pull_request,push
2323

2424
# Run all CI jobs
25-
Optional26 $ sudo act -P ubuntu-24.04=ghcr.io/catthehacker/ubuntu:full-24.04 --container-architecture linux/amd64 push
25+
optional26 $ sudo act -P ubuntu-24.04=ghcr.io/catthehacker/ubuntu:full-24.04 --container-architecture linux/amd64 push
2626
[CI Tests/Ubuntu Clang 18-2] 🚀 Start image=ghcr.io/catthehacker/ubuntu:full-24.04
2727
[CI Tests/Ubuntu Clang 19-3] 🚀 Start image=ghcr.io/catthehacker/ubuntu:full-24.04
2828
[CI Tests/Ubuntu Clang 17-1] 🚀 Start image=ghcr.io/catthehacker/ubuntu:full-24.04

examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Beman.Optional26 Examples
1+
# Examples for beman.optional26
22

33
<!--
44
SPDX-License-Identifier: 2.0 license with LLVM exceptions
55
-->
66

7-
List of usage examples for `Beman.Optional26`.
7+
List of usage examples for `beman.optional26`.
88

99
## Samples
1010

11-
Check basic `Beman.Optional26` library usages:
11+
Check basic `beman.optional26` library usages:
1212

1313
* local [./sample.cpp](./sample.cpp) or [sample.cpp@Compiler Explorer](https://godbolt.org/z/47vGje65x)
1414
* local [./std_vs_beman.cpp](./std_vs_beman.cpp) or [std_vs_beman.cpp@Compiler Explorer](https://godbolt.org/z/ds5MvfGe6)

include/beman/optional26/detail/stl_interfaces/config.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// include/Beman/Optional26/detail/stl_interfaces/config.hpp -*-C++-*-
1+
// include/beman/optional26/detail/stl_interfaces/config.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
// Copyright (C) 2020 T. Zachary Laine

src/beman/optional26/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# cmake-format: off
2-
# src/Beman/Optional26/CMakeLists.txt -*-makefile-*-
2+
# src/beman/optional26/CMakeLists.txt -*-makefile-*-
33
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44
# cmake-format: on
55

src/beman/optional26/tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# cmake-format: off
2-
# src/Beman/Optional26/tests/CMakeLists.txt -*-makefile-*-
2+
# src/beman/optional26/tests/CMakeLists.txt -*-makefile-*-
33
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
44
# cmake-format: on
55

src/beman/optional26/tests/detail/iterator.t.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// src/Beman/Optional26/tests/detail/iterator.t.cpp -*-C++-*-
1+
// src/beman/optional26/tests/detail/iterator.t.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
/**
55
* This file contains tests for beman::optional26::detail::contiguous_iterator.
66
*/
7-
#include <Beman/Optional26/detail/iterator.hpp>
7+
#include <beman/optional26/detail/iterator.hpp>
88

99
#include <gtest/gtest.h>
1010
#include <tests/test_types.hpp>

src/beman/optional26/tests/test_types.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// src/Beman/Optional26/tests/test_types.h -*-C++-*-
1+
// src/beman/optional26/tests/test_types.h -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#ifndef BEMAN_OPTIONAL26_TESTS_TEST_TYPES_HPP

src/beman/optional26/tests/test_utilities.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// src/Beman/Optional26/tests/test_utilities.hpp -*-C++-*-
1+
// src/beman/optional26/tests/test_utilities.hpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#ifndef BEMAN_OPTIONAL26_TESTS_TEST_UTILITIES_HPP

0 commit comments

Comments
 (0)