Skip to content

Commit

Permalink
🔖 release v1.0.8+1
Browse files Browse the repository at this point in the history
## 1.0.8+1

- [CHORE] update readme / documentation
  • Loading branch information
techouse committed Apr 27, 2024
1 parent 0fbe878 commit 160ece1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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()`
Expand Down
2 changes: 1 addition & 1 deletion example/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
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: 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:
Expand Down
2 changes: 1 addition & 1 deletion test/unit/example.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 160ece1

Please sign in to comment.