Skip to content

Commit 47d46b4

Browse files
committed
Update package.json version to 1.1.1; update changelog; recompile grunt
1 parent e9696a4 commit 47d46b4

8 files changed

+26
-23
lines changed

changelog.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
### 1.1.1 January 12, 2017
4+
* Fix hiding of .visuallyhidden style (introduced in #104) [#107](https://github.com/corejavascript/typeahead.js/pull/107)
5+
36
### 1.1.0 December 19, 2016
47
* Improve screen reader support, ARIA, etc. [#104](https://github.com/corejavascript/typeahead.js/pull/104)
58
* Remove non-essential files from NPM package [#100](https://github.com/corejavascript/typeahead.js/pull/100)

dist/bloodhound.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/*!
2-
* typeahead.js 1.1.0
2+
* typeahead.js 1.1.1
33
* https://github.com/twitter/typeahead.js
4-
* Copyright 2013-2016 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77
(function(root, factory) {
88
if (typeof define === "function" && define.amd) {
99
define([ "jquery" ], function(a0) {
1010
return root["Bloodhound"] = factory(a0);
1111
});
12-
} else if (typeof module === "object" && module.exports) {
12+
} else if (typeof exports === "object") {
1313
module.exports = factory(require("jquery"));
1414
} else {
1515
root["Bloodhound"] = factory(root["jQuery"]);
@@ -158,7 +158,7 @@
158158
noop: function() {}
159159
};
160160
}();
161-
var VERSION = "1.1.0";
161+
var VERSION = "1.1.1";
162162
var tokenizers = function() {
163163
"use strict";
164164
return {

dist/bloodhound.min.js

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

dist/typeahead.bundle.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/*!
2-
* typeahead.js 1.1.0
2+
* typeahead.js 1.1.1
33
* https://github.com/twitter/typeahead.js
4-
* Copyright 2013-2016 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77
(function(root, factory) {
88
if (typeof define === "function" && define.amd) {
99
define([ "jquery" ], function(a0) {
1010
return root["Bloodhound"] = factory(a0);
1111
});
12-
} else if (typeof module === "object" && module.exports) {
12+
} else if (typeof exports === "object") {
1313
module.exports = factory(require("jquery"));
1414
} else {
1515
root["Bloodhound"] = factory(root["jQuery"]);
@@ -158,7 +158,7 @@
158158
noop: function() {}
159159
};
160160
}();
161-
var VERSION = "1.1.0";
161+
var VERSION = "1.1.1";
162162
var tokenizers = function() {
163163
"use strict";
164164
return {
@@ -956,7 +956,7 @@
956956
define([ "jquery" ], function(a0) {
957957
return factory(a0);
958958
});
959-
} else if (typeof module === "object" && module.exports) {
959+
} else if (typeof exports === "object") {
960960
module.exports = factory(require("jquery"));
961961
} else {
962962
factory(root["jQuery"]);

dist/typeahead.bundle.min.js

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

dist/typeahead.jquery.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/*!
2-
* typeahead.js 1.1.0
2+
* typeahead.js 1.1.1
33
* https://github.com/twitter/typeahead.js
4-
* Copyright 2013-2016 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77
(function(root, factory) {
88
if (typeof define === "function" && define.amd) {
99
define([ "jquery" ], function(a0) {
1010
return factory(a0);
1111
});
12-
} else if (typeof module === "object" && module.exports) {
12+
} else if (typeof exports === "object") {
1313
module.exports = factory(require("jquery"));
1414
} else {
1515
factory(root["jQuery"]);

dist/typeahead.jquery.min.js

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@
7171
"scripts": {
7272
"test": "bower install && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
7373
},
74-
"version": "1.1.0",
74+
"version": "1.1.1",
7575
"main": "dist/typeahead.bundle.js"
7676
}

0 commit comments

Comments
 (0)