From 1b86b6633a1f48a0ffa7915007bab555db5c4c0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 15 Apr 2024 21:59:20 +0100 Subject: [PATCH 1/2] :bookmark: release v1.0.8 ## 1.0.8 - [FEAT] port JavaScript's `String.prototype.slice()` method to Dart and use that instead of `String.substring()` --- CHANGELOG.md | 4 ++++ pubspec.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a408dc..906ae6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.8 + +- [FEAT] port JavaScript's `String.prototype.slice()` method to Dart and use that instead of `String.substring()` + ## 1.0.7+1 - [FIX] fix optimization regressions introduced in v1.0.7 diff --git a/pubspec.yaml b/pubspec.yaml index d284d5b..b9b53c2 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.7+1 +version: 1.0.8 repository: https://github.com/techouse/qs environment: From cdac410fcc1bb91cf02db416cc0b474d243fd799 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 15 Apr 2024 22:03:10 +0100 Subject: [PATCH 2/2] :memo: update changelog --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 906ae6e..c700343 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ ## 1.0.8 -- [FEAT] port JavaScript's `String.prototype.slice()` method to Dart and use that instead of `String.substring()` +- [FEAT] port `String.prototype.slice()` from JavaScript and use that instead of Dart's `String.substring()` +- [CHORE] add comparison test between output of qs_dart and [qs](https://www.npmjs.com/package/qs) +- [CHORE] update test to 1.25.3 (was 1.25.2) +- [CHORE] update path to 1.9.0 (was 1.8.0) ## 1.0.7+1