diff --git a/CHANGELOG.md b/CHANGELOG.md index c700343..53a3d6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.8+1 + +- [CHORE] update readme / documentation + ## 1.0.8 - [FEAT] port `String.prototype.slice()` from JavaScript and use that instead of Dart's `String.substring()` diff --git a/example/example.dart b/example/example.dart index 35b0902..580d9bd 100644 --- a/example/example.dart +++ b/example/example.dart @@ -897,7 +897,7 @@ void main() { QS.decode( '%61=%82%b1%82%f1%82%c9%82%bf%82%cd%81%49', DecodeOptions( - decoder: (str, {Encoding? charset, Format? format}) { + decoder: (str, {Encoding? charset}) { if (str == null) { return null; } diff --git a/pubspec.yaml b/pubspec.yaml index b9b53c2..2cdf3ba 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: qs_dart description: A query string encoding and decoding library for Dart. Ported from qs for JavaScript. -version: 1.0.8 +version: 1.0.8+1 repository: https://github.com/techouse/qs environment: diff --git a/test/unit/example.dart b/test/unit/example.dart index 35b0902..580d9bd 100644 --- a/test/unit/example.dart +++ b/test/unit/example.dart @@ -897,7 +897,7 @@ void main() { QS.decode( '%61=%82%b1%82%f1%82%c9%82%bf%82%cd%81%49', DecodeOptions( - decoder: (str, {Encoding? charset, Format? format}) { + decoder: (str, {Encoding? charset}) { if (str == null) { return null; }