Skip to content

Commit

Permalink
1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Nov 19, 2015
1 parent 3c4520f commit 82cf85a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion alex.js
Original file line number Diff line number Diff line change
Expand Up @@ -1993,7 +1993,7 @@ function utf8ToBytes (string, units) {
}

// valid surrogate pair
codePoint = leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00 | 0x10000
codePoint = (leadSurrogate - 0xD800 << 10 | codePoint - 0xDC00) + 0x10000
} else if (leadSurrogate) {
// valid bmp char, but last char was a lead
if ((units -= 3) > -1) bytes.push(0xEF, 0xBF, 0xBD)
Expand Down
2 changes: 1 addition & 1 deletion alex.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion component.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alex",
"version": "1.5.0",
"version": "1.6.0",
"description": "Catch insensitive, inconsiderate writing",
"license": "MIT",
"repository": "wooorm/alex",
Expand Down
7 changes: 7 additions & 0 deletions history.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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

1.6.0 / 2015-11-19
==================

* Refactor wording in `readme.md` ([3c4520f](https://github.com/wooorm/alex/commit/3c4520f))
* Add support for file finding, ignoring ([9646363](https://github.com/wooorm/alex/commit/9646363))
* Update dependencies ([a826c0c](https://github.com/wooorm/alex/commit/a826c0c))

1.5.0 / 2015-11-09
==================

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alex",
"version": "1.5.0",
"version": "1.6.0",
"description": "Catch insensitive, inconsiderate writing",
"license": "MIT",
"repository": "wooorm/alex",
Expand Down

0 comments on commit 82cf85a

Please sign in to comment.