From 075dc6afe0971bffff4448ce2ef5b8d0460d2694 Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 09:06:35 -0400 Subject: [PATCH 1/8] chore: update gitignore for pesde compatibility --- .gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index 14e2d4d..116b3f2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,14 @@ # Selene roblox.yml +# Pesde +# pesde.lock +luau_packages +lune_packages +roblox_packages +roblox_server_packages +.pesde/scripts + /*.lock sourcemap.json \ No newline at end of file From e0590b917d9ecf1e0a06495f0dc51200aeec0bbf Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 09:08:17 -0400 Subject: [PATCH 2/8] build: update pesde file with package related information --- pesde.toml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pesde.toml b/pesde.toml index e809bdb..31fb3f2 100644 --- a/pesde.toml +++ b/pesde.toml @@ -1,11 +1,20 @@ name = "ophidiedev/utf8_validate" version = "1.0.0" +authors = ["Ophidie (https://github.com/OphidieDev)"] description = "UTF8 validator" repository = "https://github.com/OphidieDev/utf8-validate" license = "MIT" +includes = [ + "pesde.toml", + "README.md", + "LICENSE", + "src/**/*.luau", +] [target] environment = "roblox" +lib = "src/init.luau" +build_files = ["src"] [indices] default = "https://github.com/pesde-pkg/index" From 9bdb689411c2f590ca63228585651644e5e79737 Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 09:08:52 -0400 Subject: [PATCH 3/8] build: update wally with package related information --- wally.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/wally.toml b/wally.toml index 44c211e..b24745f 100644 --- a/wally.toml +++ b/wally.toml @@ -1,7 +1,11 @@ [package] name = "ophidiedev/utf8-validate" +description = "UTF8 Validator" +authors = ["Ophidie <>"] version = "1.0.0" +license = "MIT" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" +repository = "https://github.com/OphidieDev/utf8-validate" [dependencies] From 72cf131d1db0fa1c6d39831fb6ac03f36b343b9a Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 09:31:39 -0400 Subject: [PATCH 4/8] chore: update readme shields icons --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f2fe98f..ac4bbb1 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@

- [![Version npm](https://img.shields.io/npm/v/@rbxts/utf8-validate.svg?logo=npm)](https://www.npmjs.com/package/@rbxts/utf8-validate) + NPM Version pesde - wally + wally

> [!NOTE] From 33e09000321aaecdda0be42c67bacf5ce639159f Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 09:35:31 -0400 Subject: [PATCH 5/8] chore: update wally package link in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ac4bbb1..b9a52e5 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

NPM Version pesde - wally + wally

> [!NOTE] From f0194a1e5e8a3ed5543752c8cc380446f4c19f44 Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 09:43:00 -0400 Subject: [PATCH 6/8] chore: decrease size of wally shields icon --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b9a52e5..1b1e5b9 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

NPM Version pesde - wally + wally

> [!NOTE] From 85d808901f62c29cd814390de1606911e620a654 Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 10:15:30 -0400 Subject: [PATCH 7/8] chore: update all package files to 1.0.1 --- package.json | 2 +- pesde.toml | 2 +- wally.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 0914656..8700aa0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rbxts/utf8-validate", - "version": "1.0.0", + "version": "1.0.1", "description": "UTF8 validator", "main": "src/init.luau", "types": "src/index.d.ts", diff --git a/pesde.toml b/pesde.toml index 31fb3f2..1204f76 100644 --- a/pesde.toml +++ b/pesde.toml @@ -1,5 +1,5 @@ name = "ophidiedev/utf8_validate" -version = "1.0.0" +version = "1.0.1" authors = ["Ophidie (https://github.com/OphidieDev)"] description = "UTF8 validator" repository = "https://github.com/OphidieDev/utf8-validate" diff --git a/wally.toml b/wally.toml index b24745f..9027002 100644 --- a/wally.toml +++ b/wally.toml @@ -2,7 +2,7 @@ name = "ophidiedev/utf8-validate" description = "UTF8 Validator" authors = ["Ophidie <>"] -version = "1.0.0" +version = "1.0.1" license = "MIT" registry = "https://github.com/UpliftGames/wally-index" realm = "shared" From 325540ef0aaf1846d07b01b48b7a47134d1dcb2f Mon Sep 17 00:00:00 2001 From: OphidieDev <83857517+OphidieDev@users.noreply.github.com> Date: Mon, 26 May 2025 10:16:51 -0400 Subject: [PATCH 8/8] chore: update readme tutorials to 1.0.1 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1b1e5b9..40cb16f 100644 --- a/README.md +++ b/README.md @@ -21,17 +21,17 @@ ## Installation Add to your `wally.toml`: ```toml -utf8_validate = "ophidiedev/utf8-validate@1.0.0" +utf8_validate = "ophidiedev/utf8-validate@1.0.1" ``` Add to your `pesde.toml`: ```toml -utf8_validate = { name = "ophidiedev/utf8_validate", version = "^1.0.0" } +utf8_validate = { name = "ophidiedev/utf8_validate", version = "^1.0.1" } ``` Add to your `package.json`: ```json -"@rbxts/utf8-validate": "^1.0.0" +"@rbxts/utf8-validate": "^1.0.1" ``` ## Read More