Skip to content
Merged

Main #36

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading