Skip to content

Commit 82cf85a

Browse files
committed
1.6.0
1 parent 3c4520f commit 82cf85a

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

alex.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1993,7 +1993,7 @@ function utf8ToBytes (string, units) {
19931993
}
19941994

19951995
// valid surrogate pair
1996-
codePoint = leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00 | 0x10000
1996+
codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000
19971997
} else if (leadSurrogate) {
19981998
// valid bmp char, but last char was a lead
19991999
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)

alex.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alex",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Catch insensitive, inconsiderate writing",
55
"license": "MIT",
66
"repository": "wooorm/alex",

history.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
<!--lint disable no-multiple-toplevel-headings-->
44

5+
1.6.0 / 2015-11-19
6+
==================
7+
8+
* Refactor wording in `readme.md` ([3c4520f](https://github.com/wooorm/alex/commit/3c4520f))
9+
* Add support for file finding, ignoring ([9646363](https://github.com/wooorm/alex/commit/9646363))
10+
* Update dependencies ([a826c0c](https://github.com/wooorm/alex/commit/a826c0c))
11+
512
1.5.0 / 2015-11-09
613
==================
714

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "alex",
3-
"version": "1.5.0",
3+
"version": "1.6.0",
44
"description": "Catch insensitive, inconsiderate writing",
55
"license": "MIT",
66
"repository": "wooorm/alex",

0 commit comments

Comments
 (0)