diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
index 27cd1d6..2ff2340 100644
--- a/.github/FUNDING.yml
+++ b/.github/FUNDING.yml
@@ -1,3 +1,3 @@
# Thanks for any donations! :)
-github: DeveloperPaul123
+github: ptsouchlos
diff --git a/README.md b/README.md
index 8eae41d..f0df0b7 100644
--- a/README.md
+++ b/README.md
@@ -2,20 +2,22 @@
thread-pool
-[](https://github.com/DeveloperPaul123/thread-pool/stargazers)
+[](https://github.com/ptsouchlos/thread-pool/stargazers)
[](https://discord.gg/CX2ybByRnt)
-
-
-
+
+
+
-[](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/ubuntu.yml)
-[](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/windows.yml)
-[](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/style.yml)
-[](https://github.com/DeveloperPaul123/thread-pool/actions/workflows/install.yml)
-[](https://codecov.io/github/DeveloperPaul123/thread-pool)
+[](https://github.com/ptsouchlos/thread-pool/actions/workflows/ubuntu.yml)
+[](https://github.com/ptsouchlos/thread-pool/actions/workflows/windows.yml)
+[](https://github.com/ptsouchlos/thread-pool/actions/workflows/style.yml)
+[](https://github.com/ptsouchlos/thread-pool/actions/workflows/install.yml)
+[](https://codecov.io/github/ptsouchlos/thread-pool)
A simple, *fast* and functional thread pool implementation using pure C++20.
+> **Note:** The GitHub account for this project was renamed from `DeveloperPaul123` to `ptsouchlos`. Repository ownership and history are unchanged.
+
## Features
* Built entirely with C++20
@@ -49,7 +51,7 @@ Alternatively, you can use something like [CPM](https://github.com/TheLartians/C
```cmake
CPMAddPackage(
NAME thread-pool
- GITHUB_REPOSITORY DeveloperPaul123/thread-pool
+ GITHUB_REPOSITORY ptsouchlos/thread-pool
GIT_TAG 0.6.0 # change this to latest commit or release tag
OPTIONS
"TP_BUILD_TESTS OFF"
@@ -188,7 +190,7 @@ See [Format.cmake](https://github.com/TheLartians/Format.cmake) for details.
### Build the documentation
-The documentation is automatically built and [published](https://developerpaul123.github.io/thread-pool) whenever a [GitHub Release](https://help.github.com/en/github/administering-a-repository/managing-releases-in-a-repository) is created.
+The documentation is automatically built and [published](https://ptsouchlos.github.io/thread-pool) whenever a [GitHub Release](https://help.github.com/en/github/administering-a-repository/managing-releases-in-a-repository) is created.
To manually build documentation, call the following command.
```bash
@@ -210,5 +212,5 @@ The project is licensed under the MIT license. See [LICENSE](LICENSE) for more d
## Author
-| [
@DeveloperPaul123](https://github.com/DeveloperPaul123) |
+| [
@ptsouchlos](https://github.com/ptsouchlos) |
|:----:|
diff --git a/examples/mandelbrot/source/fractal.cpp b/examples/mandelbrot/source/fractal.cpp
index 91825af..b643424 100644
--- a/examples/mandelbrot/source/fractal.cpp
+++ b/examples/mandelbrot/source/fractal.cpp
@@ -22,7 +22,7 @@ void save_ppm(const unsigned int& width, const unsigned int& height, std::span(colors.data()), width * height * 3);