Skip to content

Commit 4c5cd80

Browse files
authored
Merge pull request bemanproject#61 from steve-downey/two-step-rename
Two step rename
2 parents df0a6d0 + 4f8287f commit 4c5cd80

36 files changed

+68
-68
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
cff-version: 1.0.0
22
message: "If you use this software, please cite it as below."
3-
title: "Beman.Optional26"
3+
title: "beman.optional26"
44
url: "https://github.com/beman-project/Optional26"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if(BUILD_TESTING)
2626
FetchContent_MakeAvailable(googletest)
2727
endif()
2828

29-
add_subdirectory(src/Beman/Optional26)
29+
add_subdirectory(src/beman/optional26)
3030
add_subdirectory(examples)
3131

3232
include(GNUInstallDirs)

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)

examples/concept_checks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#include <optional>
5-
#include <Beman/Optional26/optional.hpp>
5+
#include <beman/optional26/optional.hpp>
66

77
#include <concepts>
88

examples/optional_ref.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/optional_ref.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55

66
#include <string>
77

examples/pythagorean_triples.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/pythagorean_triples.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55

66
#include <algorithm>
77
#include <cassert>

examples/range_loop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// examples/range_loop.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

4-
#include <Beman/Optional26/optional.hpp>
4+
#include <beman/optional26/optional.hpp>
55
#include <iostream>
66

77
int main() {

0 commit comments

Comments
 (0)