Releases: thedevsaddam/lo_
Releases · thedevsaddam/lo_
feat: add kebab_case and screaming_snake_case string helper
- Add
kebab_casefunction for converting strings - Add
screaming_snake_casefunction for converting strings - Update GitHub Actions CI workflow
- Fix and improve documentation formatting
Introduce general utilities and refactor core modules
- Added
tapfunc for inline value inspection without breaking functional chains - Added
retryfunc for retrying fallible operations with optional backoff strategies - Introduced
async_retryfunc behind theasync_retryfeature flag (requires Tokio) - Updated
Cargo.tomlto support optional async feature using Tokio - Grouped general-purpose utilities under a
generalmodule for improved modularity - Moved
arraymodule contents to a newcollectionmodule - Moved
conditionmodule into thegeneralmodule - Added
omit_keysandpick_keysfunctions to thecollectionmodule - Added
snake_case,slugify,safe_parse, andtruncate_middleutilities to thestringmodule - Added
Transformtrait with reusable string methods