Skip to content

Commit 8e7e922

Browse files
authored
chore: update github username (#42)
Changes: - Update GitHub username references from DeveloperPaul123 -> ptsouchlos - Fixed issue in Ubuntu CI due to sun-setting of Ubuntu 20.04 runner
1 parent be632ba commit 8e7e922

File tree

3 files changed

+31
-23
lines changed

3 files changed

+31
-23
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Thanks for any donations! :)
22

3-
github: DeveloperPaul123
3+
github: ptsouchlos

.github/workflows/ubuntu.yml

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,14 @@ jobs:
1717
fail-fast: false
1818
max-parallel: 4
1919
matrix:
20-
os: [ubuntu-20.04, ubuntu-22.04]
20+
os: [ubuntu-22.04, ubuntu-24.04]
2121
cpp: [17]
22-
version: [9, 10, 11]
22+
version: [9, 10, 11, 12]
2323
include:
24-
- os: ubuntu-22.04
25-
version: 12
26-
- os: ubuntu-20.04
27-
version: 7
28-
- os: ubuntu-20.04
29-
version: 8
24+
- os: ubuntu-24.04
25+
version: 13
26+
- os: ubuntu-24.04
27+
version: 14
3028
env:
3129
CPP_STANDARD: ${{ matrix.cpp }}
3230
steps:
@@ -60,12 +58,20 @@ jobs:
6058
fail-fast: false
6159
max-parallel: 4
6260
matrix:
63-
os: [ubuntu-20.04, ubuntu-22.04]
61+
os: [ubuntu-22.04, ubuntu-24.04]
6462
cpp: [17]
65-
version: [14, 15, 16, 17]
63+
version: [17, 18]
6664
include:
6765
- os: ubuntu-22.04
68-
version: 18
66+
version: 14
67+
- os: ubuntu-22.04
68+
version: 15
69+
- os: ubuntu-22.04
70+
version: 16
71+
- os: ubuntu-24.04
72+
version: 19
73+
- os: ubuntu-24.04
74+
version: 20
6975
env:
7076
CPP_STANDARD: ${{ matrix.cpp }}
7177
steps:

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22

3-
<img src="https://socialify.git.ci/DeveloperPaul123/eventbus/image?font=Bitter&forks=1&language=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2FDeveloperPaul123%2Feventbus%2Fdevelop%2Fart%2Fexport%2Fbus_icon.svg&pattern=Circuit%20Board&stargazers=1&theme=Dark" alt="eventbus" width="640" height="320" />
3+
<img src="https://socialify.git.ci/ptsouchlos/eventbus/image?font=Bitter&forks=1&language=1&logo=https%3A%2F%2Fraw.githubusercontent.com%2Fptsouchlos%2Feventbus%2Fdevelop%2Fart%2Fexport%2Fbus_icon.svg&pattern=Circuit%20Board&stargazers=1&theme=Dark" alt="eventbus" width="640" height="320" />
44

55
<br>
66
<br>
@@ -9,22 +9,24 @@
99
<img src="https://img.shields.io/badge/license-Apache 2.0-blue" alt="License Apache 2.0">
1010
</a>
1111

12-
<a href="https://github.com/DeveloperPaul123/eventbus/stargazers">
12+
<a href="https://github.com/ptsouchlos/eventbus/stargazers">
1313
<img src="https://img.shields.io/badge/Say%20Thanks-👍-1EAEDB.svg" alt="Say thanks">
1414
</a>
1515

1616
<a href="https://discord.gg/CX2ybByRnt">
1717
<img alt="Discord" src="https://img.shields.io/discord/652515194572111872">
1818
</a>
1919

20-
<a href="https://github.com/DeveloperPaul123/eventbus/actions">
21-
<img alt="Windows" src="https://github.com/DeveloperPaul123/eventbus/workflows/Windows/badge.svg">
20+
<a href="https://github.com/ptsouchlos/eventbus/actions">
21+
<img alt="Windows" src="https://github.com/ptsouchlos/eventbus/workflows/Windows/badge.svg">
2222
</a>
23-
<a href="https://github.com/DeveloperPaul123/eventbus/actions">
24-
<img alt="Ubuntu" src="https://github.com/DeveloperPaul123/eventbus/workflows/Ubuntu/badge.svg">
23+
<a href="https://github.com/ptsouchlos/eventbus/actions">
24+
<img alt="Ubuntu" src="https://github.com/ptsouchlos/eventbus/workflows/Ubuntu/badge.svg">
2525
</a>
2626
</p>
2727

28+
> **Note:** The GitHub account for this project was renamed from `DeveloperPaul123` to `ptsouchlos`. Repository ownership and history are unchanged.
29+
2830
## Overview
2931

3032
`eventbus` is a simple, header only C++17 event bus library that doesn't require you to inherit from any sort of `event` class. The library implements the "Mediator" pattern. This pattern is useful when you want components to communicate to each other without necessarily "knowing" about each other. Effectively, this is a thread safe event dispatcher with a list of callbacks.
@@ -119,7 +121,7 @@ dp::event_bus evt_bus;
119121
evt_bus.fire_event(evt); // all connect handler for the given event type will be fired.
120122
````
121123

122-
A complete example can be seen in the [demo](https://github.com/DeveloperPaul123/eventbus/tree/develop/demo) project.
124+
A complete example can be seen in the [demo](https://github.com/ptsouchlos/eventbus/tree/develop/demo) project.
123125

124126
## Integration
125127

@@ -142,7 +144,7 @@ Alternatively, you can use something like [CPM](https://github.com/TheLartians/C
142144
````cmake
143145
CPMAddPackage(
144146
NAME eventbus
145-
GITHUB_REPOSITORY DeveloperPaul123/eventbus
147+
GITHUB_REPOSITORY ptsouchlos/eventbus
146148
GIT_TAG #053902d63de5529ee65d965f8b1fb0851eceed24 change this to latest commit/release tag
147149
)
148150
````
@@ -162,17 +164,17 @@ The following use cases are not supported:
162164

163165
## Contributing
164166

165-
If you find an issue with this library please file an [issue](https://github.com/DeveloperPaul123/eventbus/issues). Pull requests are also welcome! Please see the [contribution guidelines](CONTRIBUTING.md) for more information.
167+
If you find an issue with this library please file an [issue](https://github.com/ptsouchlos/eventbus/issues). Pull requests are also welcome! Please see the [contribution guidelines](CONTRIBUTING.md) for more information.
166168

167169
## License
168170

169171
The project is licensed under the Apache License Version 2.0. See [LICENSE](LICENSE) for more details.
170172

171173
## Author
172174

173-
| [<img src="https://avatars0.githubusercontent.com/u/6591180?s=460&v=4" width="100"><br><sub>@DeveloperPaul123</sub>](https://github.com/DeveloperPaul123) |
175+
| [<img src="https://avatars0.githubusercontent.com/u/6591180?s=460&v=4" width="100"><br><sub>@ptsouchlos</sub>](https://github.com/ptsouchlos) |
174176
|:----:|
175177

176178
## Contributors
177179

178-
See [here](https://github.com/DeveloperPaul123/eventbus/graphs/contributors) for a list of contributors.
180+
See [here](https://github.com/ptsouchlos/eventbus/graphs/contributors) for a list of contributors.

0 commit comments

Comments
 (0)