Skip to content

Commit a4c3f8e

Browse files
committed
release: v1.6.1
1 parent 6990fd1 commit a4c3f8e

6 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.6.1 (29 Aug 2019)
2+
3+
* add: deburr
4+
15
## v1.6.0 (26 Aug 2019)
26

37
* add: parseHtml

index.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1410,7 +1410,8 @@
14101410
"test": [
14111411
"node",
14121412
"browser"
1413-
]
1413+
],
1414+
"since": "1.6.1"
14141415
},
14151416
"decodeUriComponent": {
14161417
"description": "Better decodeURIComponent that does not throw if input is invalid.",
@@ -2352,7 +2353,8 @@
23522353
"test": [
23532354
"node",
23542355
"browser"
2355-
]
2356+
],
2357+
"since": "1.6.0"
23562358
},
23572359
"identity": {
23582360
"description": "Return the first argument given.",
@@ -4051,7 +4053,8 @@
40514053
"test": [
40524054
"node",
40534055
"browser"
4054-
]
4056+
],
4057+
"since": "1.6.0"
40554058
},
40564059
"partial": {
40574060
"description": "Partially apply a function by filling in given arguments.",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "licia",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "Useful utility collection with zero dependencies",
55
"bin": {
66
"licia": "./bin/licia.js"

src/d/deburr.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
/* module
1414
* env: all
1515
* test: all
16+
* since: 1.6.1
1617
*/
1718

1819
/* typescript

src/h/html.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
/* module
2929
* env: all
3030
* test: all
31+
* since: 1.6.0
3132
*/
3233

3334
/* typescript

src/p/parseHtml.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
/* module
1919
* env: all
2020
* test: all
21+
* since: 1.6.0
2122
*/
2223

2324
/* typescript

0 commit comments

Comments
 (0)