Skip to content

Commit efe3fe8

Browse files
committed
🔖 release v1.3.7
## 1.3.7 - [CHORE] update dev_dependencies
1 parent 6474f04 commit efe3fe8

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.7
2+
3+
- [CHORE] update dev_dependencies
4+
15
## 1.3.6
26

37
- [FIX] fix Lists with indices always getting parsed into a Map

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: qs_dart
22
description: A query string encoding and decoding library for Dart. Ported from qs for JavaScript.
3-
version: 1.3.6
3+
version: 1.3.7
44
homepage: https://techouse.github.io/qs/
55
repository: https://github.com/techouse/qs
66
documentation: https://pub.dev/documentation/qs_dart/latest/
@@ -18,7 +18,7 @@ dependencies:
1818
dev_dependencies:
1919
cli_script: ^1.0.0
2020
euc: ^1.0.6+8
21-
lints: ">=3.0.0 <6.0.0"
21+
lints: ">=3.0.0 <7.0.0"
2222
path: ^1.9.0
2323
test: ^1.25.5
2424

test/unit/encode_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class CustomObject {
1717

1818
CustomObject(this.value);
1919

20-
operator [](String key) => key == 'prop' ? value : null;
20+
String? operator [](String key) => key == 'prop' ? value : null;
2121
}
2222

2323
void main() {

0 commit comments

Comments
 (0)