From 5992f0b262a46c1f151bf7578120cabb3e542442 Mon Sep 17 00:00:00 2001 From: Masonlet Date: Tue, 10 Mar 2026 22:15:34 -0400 Subject: [PATCH 1/3] refactor: update URLs from personal profile to organization --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index bda9589..446c9f1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Starlet Serializer -![Tests](https://github.com/masonlet/starlet-serializer/actions/workflows/test.yml/badge.svg) +![Tests](https://github.com/starlet-engine/serializer/actions/workflows/test.yml/badge.svg) [![C++20](https://img.shields.io/badge/C%2B%2B-20-blue.svg)](https://isocpp.org/std/the-standard) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE) @@ -31,8 +31,8 @@ A lightweight serialization library for **Starlet** projects to handle both data - C++20 or later - CMake 3.20+ - **Dependencies**: - - [starlet-math](https://github.com/masonlet/starlet-math) (auto-fetched) - - [starlet-logger](https://github.com/masonlet/starlet-logger) (auto-fetched) + - [starlet-math](https://github.com/starlet-engine/math) (auto-fetched) + - [starlet-logger](https://github.com/starlet-engine/logger) (auto-fetched) ## Installation @@ -41,7 +41,7 @@ A lightweight serialization library for **Starlet** projects to handle both data include(FetchContent) FetchContent_Declare(starlet_serializer - GIT_REPOSITORY https://github.com/masonlet/starlet-serializer.git + GIT_REPOSITORY https://github.com/starlet-engine/serializer.git GIT_TAG main ) FetchContent_MakeAvailable(starlet_serializer) @@ -52,8 +52,8 @@ target_link_libraries(app_name PRIVATE starlet_serializer) ### Building from Source ```bash # Clone the repository -git clone https://github.com/masonlet/starlet-serializer.git -cd starlet-serializer +git clone https://github.com/starlet-engine/serializer.git +cd serializer # Configure and build cmake -B build From 56dd09f8dbe390f5b1e163084047780633d4bcfe Mon Sep 17 00:00:00 2001 From: Masonlet Date: Tue, 10 Mar 2026 22:17:26 -0400 Subject: [PATCH 2/3] style: remove
from README --- README.md | 9 --------- 1 file changed, 9 deletions(-) diff --git a/README.md b/README.md index 446c9f1..6908793 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,6 @@ A lightweight serialization library for **Starlet** projects to handle both data - Whitespace handling: `skipWhitespace`, `skipToNextLine`, `trimEOL` - Error-safe macros: `STARLET_PARSE_OR`, `STARLET_PARSE_STRING_OR` -
- - ## Prerequisites - C++20 or later - CMake 3.20+ @@ -60,9 +57,6 @@ cmake -B build cmake --build build ``` -
- - ## Testing ```bash # Configure with tests enabled @@ -73,8 +67,5 @@ cmake --build build ctest --test-dir build --output-on-failure ``` -
- - ## License MIT License - see [LICENSE](./LICENSE) for details. From 63594401f088971a1cf24ebf0176876ebd114420 Mon Sep 17 00:00:00 2001 From: Masonlet Date: Tue, 10 Mar 2026 22:18:23 -0400 Subject: [PATCH 3/3] refactor: remove comments and clean up instructions --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index 6908793..f884402 100644 --- a/README.md +++ b/README.md @@ -48,21 +48,15 @@ target_link_libraries(app_name PRIVATE starlet_serializer) ### Building from Source ```bash -# Clone the repository git clone https://github.com/starlet-engine/serializer.git cd serializer - -# Configure and build cmake -B build cmake --build build ``` ## Testing ```bash -# Configure with tests enabled cmake -B build -DBUILD_TESTS=ON - -# Build and run tests cmake --build build ctest --test-dir build --output-on-failure ```