From 8097fbbb76b9e9bd03199a11c6c5c7b3259317d5 Mon Sep 17 00:00:00 2001 From: Ronit Rameja Date: Tue, 14 Apr 2026 10:26:52 +0530 Subject: [PATCH] updated the docs in various places --- CHANGELOG.md | 7 +++++++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 22fa674..ee5cd27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 2.1.3 + +### Documentation +- Added full dartdoc coverage to `AhoCorasick` and `TrieNode` — includes algorithm overview, usage examples, and per-member descriptions. +- Added dartdoc to the `Language` enum and `LanguageExtension` — documents `fromString`, `fileCode`, and all usage patterns. +- Added inline migration table and per-method docs to the deprecated `SafeText` class. + ## 2.1.2 ### Added diff --git a/README.md b/README.md index 65f0178..6947f62 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ Or manually add it to your `pubspec.yaml`: ```yaml dependencies: - safe_text: ^2.1.2 + safe_text: ^2.1.3 ``` Then run: diff --git a/pubspec.yaml b/pubspec.yaml index 7833188..2e20310 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: safe_text description: A Flutter package for filtering out bad words from text inputs and detecting phone numbers in various formats including multiplier words. -version: 2.1.2 +version: 2.1.3 homepage: https://github.com/master-wayne7/safe_text repository: https://github.com/master-wayne7/safe_text issue_tracker: https://github.com/master-wayne7/safe_text/issues