Skip to content

Commit 4ce56fd

Browse files
authored
Merge pull request #256 from corejavascript/rebuild-v1.3.4
Rebuild v1.3.4
2 parents 2d9ec83 + c66f5eb commit 4ce56fd

9 files changed

+24
-19
lines changed

changelog.md

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

3+
### 1.3.4
4+
- Rebuild dist files and re-tag latest release.
5+
36
### 1.3.3
47

58
- Add an `aria-controls` attribute to input element for WCAG 2.1 accessibility compliance

dist/bloodhound.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* typeahead.js 1.3.1
2+
* typeahead.js 1.3.3
33
* https://github.com/corejavascript/typeahead.js
4-
* Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77

@@ -159,7 +159,7 @@
159159
noop: function() {}
160160
};
161161
}();
162-
var VERSION = "1.3.1";
162+
var VERSION = "1.3.3";
163163
var tokenizers = function() {
164164
"use strict";
165165
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

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* typeahead.js 1.3.1
2+
* typeahead.js 1.3.3
33
* https://github.com/corejavascript/typeahead.js
4-
* Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77

@@ -159,7 +159,7 @@
159159
noop: function() {}
160160
};
161161
}();
162-
var VERSION = "1.3.1";
162+
var VERSION = "1.3.3";
163163
var tokenizers = function() {
164164
"use strict";
165165
return {
@@ -1446,6 +1446,7 @@
14461446
});
14471447
this.$input.attr({
14481448
"aria-owns": id + "_listbox",
1449+
"aria-controls": id + "_listbox",
14491450
role: "combobox",
14501451
"aria-autocomplete": "list",
14511452
"aria-expanded": false

dist/typeahead.bundle.min.js

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

dist/typeahead.jquery.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
2-
* typeahead.js 1.3.1
2+
* typeahead.js 1.3.3
33
* https://github.com/corejavascript/typeahead.js
4-
* Copyright 2013-2020 Twitter, Inc. and other contributors; Licensed MIT
4+
* Copyright 2013-2024 Twitter, Inc. and other contributors; Licensed MIT
55
*/
66

77

@@ -499,6 +499,7 @@
499499
});
500500
this.$input.attr({
501501
"aria-owns": id + "_listbox",
502+
"aria-controls": id + "_listbox",
502503
role: "combobox",
503504
"aria-autocomplete": "list",
504505
"aria-expanded": false

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-lock.json

+1-1
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 ./node_modules/karma/bin/karma start --single-run --browsers PhantomJS"
7373
},
74-
"version": "1.3.3",
74+
"version": "1.3.4",
7575
"main": "dist/typeahead.bundle.js"
7676
}

0 commit comments

Comments
 (0)