Skip to content

Commit 5b5a926

Browse files
committed
Release 1.3.0
1 parent aef3359 commit 5b5a926

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Shell script helper functions for encoding/decoding querystring data.
88
```bash
99
#!/usr/bin/env import
1010

11-
import querystring@1.2.0
11+
import querystring@1.3.0
1212

1313
querystring_escape "hello world"
1414
# hello%20world
@@ -27,7 +27,7 @@ querystring, it may be parsed with `querystring_parse`.
2727

2828
```bash
2929
#!/usr/bin/env import
30-
import querystring@1.2.0
30+
import querystring@1.3.0
3131

3232
querystring "/api/hello"
3333
# (empty)
@@ -44,7 +44,7 @@ Similar to `encodeURIComponent()` in JavaScript.
4444

4545
```bash
4646
#!/usr/bin/env import
47-
import querystring@1.2.0
47+
import querystring@1.3.0
4848

4949
querystring_escape hello world
5050
# hello%20world
@@ -62,7 +62,7 @@ Similar to `decodeURIComponent()` in JavaScript.
6262

6363
```bash
6464
#!/usr/bin/env import
65-
import querystring@1.2.0
65+
import querystring@1.3.0
6666

6767
querystring_unescape "hello%20world"
6868
# hello world
@@ -75,7 +75,7 @@ Parses the provided `qs` querystring and sets the requested shell variables.
7575

7676
```bash
7777
#!/usr/bin/env import
78-
import querystring@1.2.0
78+
import querystring@1.3.0
7979

8080
querystring_parse "one=1&two=2&three=3" one two
8181

0 commit comments

Comments
 (0)