From 988bfa3f3d34e98bf75bd54c88e11f511d2ece2a Mon Sep 17 00:00:00 2001 From: suragch Date: Wed, 11 Oct 2023 08:58:32 +0800 Subject: [PATCH] fix documentation typo --- CHANGELOG.md | 4 ++++ README.md | 2 +- pubspec.yaml | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac52739..e3b1db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changes +## 1.0.2 + +- Fix documentation typo. + ## 1.0.1 - Added null check for `equals` (#4 - @ScottAtRedHawk) diff --git a/README.md b/README.md index 274f0e5..befdbb5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ string_validator String validation and sanitization for Dart. -The is a new fork of [validator.dart](https://github.com/karan/validator.dart), which was originally a port of [validator.js](https://github.com/chriso/validator.js). +This is a new fork of [validator.dart](https://github.com/karan/validator.dart), which was originally a port of [validator.js](https://github.com/chriso/validator.js). ## Validators diff --git a/pubspec.yaml b/pubspec.yaml index 44b8dcb..e55c308 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: string_validator -version: 1.0.1 +version: 1.0.2 description: Dart library for validating and sanitizing strings, especially those from user input. homepage: https://github.com/suragch/string_validator @@ -8,5 +8,5 @@ environment: sdk: '>=2.12.0 <4.0.0' dev_dependencies: - lints: ^2.0.0 - test: ^1.23.1 + lints: ^2.1.1 + test: ^1.24.7