diff --git a/CHANGELOG b/CHANGELOG index ec4e9cc30..71e0b563f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +3.6.1 - 2021-10-15 + * fix(facetOrdering): make sure ordered facets is a dense array (#879) https://github.com/algolia/algoliasearch-helper-js/commit/990f8bc133dd379c457c52f750a87944e2f2924c + 3.6.0 - 2021-10-08 * ci(circle): update node image (#875) https://github.com/algolia/algoliasearch-helper-js/commit/36484631c25e9d286b1d2d73cf3a388d4dba2587 * feat(facets): when * is present, only send that parameter (#874) https://github.com/algolia/algoliasearch-helper-js/commit/fc183ec2910d4ba33067b3487f3a70e940fd24d3 diff --git a/package.json b/package.json index 7b96a4275..a2b919743 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "algoliasearch-helper", - "version": "3.6.0", + "version": "3.6.1", "description": "Helper for implementing advanced search features with algolia", "main": "index.js", "types": "index.d.ts", diff --git a/src/version.js b/src/version.js index 19857e17d..808c89be5 100644 --- a/src/version.js +++ b/src/version.js @@ -1,3 +1,3 @@ 'use strict'; -module.exports = '3.6.0'; +module.exports = '3.6.1';