Skip to content

Commit

Permalink
0.34.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroenv committed Dec 4, 2018
1 parent fbbed04 commit fc9a3b4
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 24 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
<a name="0.34.0"></a>
# [0.34.0](https://github.com/algolia/autocomplete.js/compare/v0.33.0...v0.34.0) (2018-12-04)


### Features

* change autocomplete from 'off' to 'nope' ([#250](https://github.com/algolia/autocomplete.js/issues/250)) ([fbbed04](https://github.com/algolia/autocomplete.js/commit/fbbed04))



<a name="0.33.0"></a>
# [0.33.0](https://github.com/algolia/autocomplete.js/compare/v0.32.0...v0.33.0) (2018-11-19)

Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "algolia-autocomplete.js",
"main": "dist/autocomplete.js",
"version": "0.33.0",
"version": "0.34.0",
"homepage": "https://github.com/algolia/autocomplete.js",
"authors": [
"Algolia Team <support@algolia.com>"
Expand Down
8 changes: 4 additions & 4 deletions dist/autocomplete.angular.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* autocomplete.js 0.33.0
* autocomplete.js 0.34.0
* https://github.com/algolia/autocomplete.js
* Copyright 2018 Algolia, Inc. and other contributors; Licensed MIT
*/
Expand Down Expand Up @@ -912,7 +912,7 @@
.prop('readonly', true)
.attr({
'aria-hidden': 'true',
autocomplete: 'off',
autocomplete: 'nope',
spellcheck: 'false',
tabindex: -1
});
Expand All @@ -937,7 +937,7 @@
$input
.addClass(_.className(options.cssClasses.prefix, options.cssClasses.input, true))
.attr({
autocomplete: 'off',
autocomplete: 'nope',
spellcheck: false,

// Accessibility features
Expand Down Expand Up @@ -2761,7 +2761,7 @@
/* 22 */
/***/ function(module, exports) {

module.exports = "0.33.0";
module.exports = "0.34.0";


/***/ },
Expand Down
6 changes: 3 additions & 3 deletions dist/autocomplete.angular.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/autocomplete.jquery.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* autocomplete.js 0.33.0
* autocomplete.js 0.34.0
* https://github.com/algolia/autocomplete.js
* Copyright 2018 Algolia, Inc. and other contributors; Licensed MIT
*/
Expand Down Expand Up @@ -922,7 +922,7 @@
.prop('readonly', true)
.attr({
'aria-hidden': 'true',
autocomplete: 'off',
autocomplete: 'nope',
spellcheck: 'false',
tabindex: -1
});
Expand All @@ -947,7 +947,7 @@
$input
.addClass(_.className(options.cssClasses.prefix, options.cssClasses.input, true))
.attr({
autocomplete: 'off',
autocomplete: 'nope',
spellcheck: false,

// Accessibility features
Expand Down Expand Up @@ -2810,7 +2810,7 @@
/* 22 */
/***/ function(module, exports) {

module.exports = "0.33.0";
module.exports = "0.34.0";


/***/ },
Expand Down
6 changes: 3 additions & 3 deletions dist/autocomplete.jquery.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/autocomplete.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* autocomplete.js 0.33.0
* autocomplete.js 0.34.0
* https://github.com/algolia/autocomplete.js
* Copyright 2018 Algolia, Inc. and other contributors; Licensed MIT
*/
Expand Down Expand Up @@ -2176,7 +2176,7 @@ return /******/ (function(modules) { // webpackBootstrap
.prop('readonly', true)
.attr({
'aria-hidden': 'true',
autocomplete: 'off',
autocomplete: 'nope',
spellcheck: 'false',
tabindex: -1
});
Expand All @@ -2201,7 +2201,7 @@ return /******/ (function(modules) { // webpackBootstrap
$input
.addClass(_.className(options.cssClasses.prefix, options.cssClasses.input, true))
.attr({
autocomplete: 'off',
autocomplete: 'nope',
spellcheck: false,

// Accessibility features
Expand Down Expand Up @@ -4064,7 +4064,7 @@ return /******/ (function(modules) { // webpackBootstrap
/* 22 */
/***/ function(module, exports) {

module.exports = "0.33.0";
module.exports = "0.34.0";


/***/ },
Expand Down
6 changes: 3 additions & 3 deletions dist/autocomplete.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 @@ -79,7 +79,7 @@
"release": "./scripts/release.sh",
"docs:netlify": "./scripts/netlify-deploy.js"
},
"version": "0.33.0",
"version": "0.34.0",
"main": "index.js",
"dependencies": {
"immediate": "^3.2.3"
Expand Down
2 changes: 1 addition & 1 deletion version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "0.33.0";
module.exports = "0.34.0";

0 comments on commit fc9a3b4

Please sign in to comment.