Skip to content

Commit

Permalink
Update package.json version to 1.1.1; update changelog; recompile grunt
Browse files Browse the repository at this point in the history
  • Loading branch information
jlbooker committed Jan 12, 2017
1 parent e9696a4 commit 47d46b4
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 23 deletions.
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

### 1.1.1 January 12, 2017
* Fix hiding of .visuallyhidden style (introduced in #104) [#107](https://github.com/corejavascript/typeahead.js/pull/107)

### 1.1.0 December 19, 2016
* Improve screen reader support, ARIA, etc. [#104](https://github.com/corejavascript/typeahead.js/pull/104)
* Remove non-essential files from NPM package [#100](https://github.com/corejavascript/typeahead.js/pull/100)
Expand Down
8 changes: 4 additions & 4 deletions dist/bloodhound.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*!
* typeahead.js 1.1.0
* typeahead.js 1.1.1
* https://github.com/twitter/typeahead.js
* Copyright 2013-2016 Twitter, Inc. and other contributors; Licensed MIT
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
*/

(function(root, factory) {
if (typeof define === "function" && define.amd) {
define([ "jquery" ], function(a0) {
return root["Bloodhound"] = factory(a0);
});
} else if (typeof module === "object" && module.exports) {
} else if (typeof exports === "object") {
module.exports = factory(require("jquery"));
} else {
root["Bloodhound"] = factory(root["jQuery"]);
Expand Down Expand Up @@ -158,7 +158,7 @@
noop: function() {}
};
}();
var VERSION = "1.1.0";
var VERSION = "1.1.1";
var tokenizers = function() {
"use strict";
return {
Expand Down
6 changes: 3 additions & 3 deletions dist/bloodhound.min.js

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions dist/typeahead.bundle.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*!
* typeahead.js 1.1.0
* typeahead.js 1.1.1
* https://github.com/twitter/typeahead.js
* Copyright 2013-2016 Twitter, Inc. and other contributors; Licensed MIT
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
*/

(function(root, factory) {
if (typeof define === "function" && define.amd) {
define([ "jquery" ], function(a0) {
return root["Bloodhound"] = factory(a0);
});
} else if (typeof module === "object" && module.exports) {
} else if (typeof exports === "object") {
module.exports = factory(require("jquery"));
} else {
root["Bloodhound"] = factory(root["jQuery"]);
Expand Down Expand Up @@ -158,7 +158,7 @@
noop: function() {}
};
}();
var VERSION = "1.1.0";
var VERSION = "1.1.1";
var tokenizers = function() {
"use strict";
return {
Expand Down Expand Up @@ -956,7 +956,7 @@
define([ "jquery" ], function(a0) {
return factory(a0);
});
} else if (typeof module === "object" && module.exports) {
} else if (typeof exports === "object") {
module.exports = factory(require("jquery"));
} else {
factory(root["jQuery"]);
Expand Down
8 changes: 4 additions & 4 deletions dist/typeahead.bundle.min.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/typeahead.jquery.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*!
* typeahead.js 1.1.0
* typeahead.js 1.1.1
* https://github.com/twitter/typeahead.js
* Copyright 2013-2016 Twitter, Inc. and other contributors; Licensed MIT
* Copyright 2013-2017 Twitter, Inc. and other contributors; Licensed MIT
*/

(function(root, factory) {
if (typeof define === "function" && define.amd) {
define([ "jquery" ], function(a0) {
return factory(a0);
});
} else if (typeof module === "object" && module.exports) {
} else if (typeof exports === "object") {
module.exports = factory(require("jquery"));
} else {
factory(root["jQuery"]);
Expand Down
6 changes: 3 additions & 3 deletions dist/typeahead.jquery.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,6 @@
"scripts": {
"test": "bower install && ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
},
"version": "1.1.0",
"version": "1.1.1",
"main": "dist/typeahead.bundle.js"
}

0 comments on commit 47d46b4

Please sign in to comment.