From c497a270163ebebc19dba918c0b1d25bab4c9230 Mon Sep 17 00:00:00 2001 From: Maverik Minett Date: Tue, 16 Sep 2025 08:35:05 -0400 Subject: [PATCH 1/2] add toPlural --- src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/index.ts b/src/index.ts index 935addd..8247a29 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,6 +2,7 @@ export * from './lib/functions/toCamelCase'; export * from './lib/functions/toKebabCase'; export * from './lib/functions/toPascalCase'; export * from './lib/functions/quantify'; +export * from './lib/functions/toPlural'; export * from './lib/functions/toSingular'; export * from './lib/functions/toSnakeCase'; export * from './lib/functions/toTitleCase'; From b292a1a2bf4a0451fd63c616f1590f15ced817a3 Mon Sep 17 00:00:00 2001 From: Maverik Minett Date: Tue, 16 Sep 2025 09:19:09 -0400 Subject: [PATCH 2/2] bump version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 724ba6e..cdb8c29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@agape/string", - "version": "3.0.0", + "version": "3.0.1", "description": "String and token manipulation", "main": "./cjs/index.js", "module": "./es2020/index.js",