diff --git a/samples/react-search-refiners/README.md b/samples/react-search-refiners/README.md
index 2c082bf96..9cd06649e 100644
--- a/samples/react-search-refiners/README.md
+++ b/samples/react-search-refiners/README.md
@@ -56,15 +56,15 @@ Version|Date|Comments
1.3 | Apr1, 2018 | Added the result count + entered keywords option
1.4 | May 10, 2018 |
- Added the query suggestions feature to the search box Web Part
- Added the automatic translation for taxonomy filter values according to the current site locale.
- Added the option in the search box Web Part to send the query to an other page
1.5 | Jul 2, 2018 | - Added a templating feature for search results with Handlebars inspired by the [react-content-query-webpart](https://github.com/SharePoint/sp-dev-fx-webparts/tree/master/samples/react-content-query-webpart) sample.
- Upgraded to 1.5.1-plusbeta to use the new SPFx dynamic data feature instead of event aggregator for Web Parts communication.
- Code refactoring and reorganization.
-2.0.5 | Sept 18, 2018 | - Upgraded to 1.6.0-plusbeta.
- Added dynamic loading of parts needed in edit mode to reduce web part footprint.
- Added configuration to sort.
- Added option to set web part title.
- Added result count tokens.
- Added toggle to load/use handlebars helpers/moment.
-2.1.0 | Oct 14, 2018 | - Bug fixes ([#641](https://github.com/SharePoint/sp-dev-fx-webparts/issues/641),[#642](https://github.com/SharePoint/sp-dev-fx-webparts/issues/642))
- Added document and Office 365 videos previews for the list template.
- Added SharePoint best bets support.
-2.1.1 | Oct 30, 2018 | - Bug fix for editing custom template.
- Bug fix for dynamic loading of video helper library.
- Added support for Page context query variables.
- Added `getUniqueCount` helper function.
-2.1.2 | Nov 9, 2018 | - Bug fix for IE11.
- Added date query variables.
- Added support for both result source id and query template.
- Added `getUniqueCount` helper function.
-2.2.0 | Nov 11, 2018 | - Upgraded to SPFx 1.7.0
- Added a TypeScript Azure Function to demonstrate NLP processing on search query
- Removed extension data source. Now we use the default SPFx 'Page Environment' data source.
-2.2.0 | Dec 3, 2018 | - Remove switch for handlebar helpers, and instead load helpers if used in the template.
-2.3.0 | Dec 13, 2018 | - Upgraded to @pnp/controls 1.13.0
- Added a result types features
- Fix bug regarding dynamic data source connection
-2.4.0 | Jan 03, 2019 | Added custom code renderer support.
-2.4.1 | Jan 07, 2019 | Added backwards compability for older sort configurations, and old empty refiner configurations
+2.0.0.5 | Sept 18, 2018 | - Upgraded to 1.6.0-plusbeta.
- Added dynamic loading of parts needed in edit mode to reduce web part footprint.
- Added configuration to sort.
- Added option to set web part title.
- Added result count tokens.
- Added toggle to load/use handlebars helpers/moment.
+2.1.0.0 | Oct 14, 2018 | - Bug fixes ([#641](https://github.com/SharePoint/sp-dev-fx-webparts/issues/641),[#642](https://github.com/SharePoint/sp-dev-fx-webparts/issues/642))
- Added document and Office 365 videos previews for the list template.
- Added SharePoint best bets support.
+2.1.1.0 | Oct 30, 2018 | - Bug fix for editing custom template.
- Bug fix for dynamic loading of video helper library.
- Added support for Page context query variables.
- Added `getUniqueCount` helper function.
+2.1.2.0 | Nov 9, 2018 | - Bug fix for IE11.
- Added date query variables.
- Added support for both result source id and query template.
- Added `getUniqueCount` helper function.
+2.2.0.0 | Nov 11, 2018 | - Upgraded to SPFx 1.7.0
- Added a TypeScript Azure Function to demonstrate NLP processing on search query
- Removed extension data source. Now we use the default SPFx 'Page Environment' data source.
+2.2.0.1 | Dec 3, 2018 | - Remove switch for handlebar helpers, and instead load helpers if used in the template.
+2.3.0.0 | Dec 13, 2018 | - Upgraded to @pnp/controls 1.13.0
- Added a result types features
- Fix bug regarding dynamic data source connection
+2.4.0.0 | Jan 03, 2019 | Added custom code renderer support.
+2.4.0.1 | Jan 07, 2019 | Added backwards compability for older sort configurations, and old empty refiner configurations
## Important notice on upgrading the solution from pre v2.2.0.0
**Due to code restucturing we have hit an edge case which impacts upgrades from previous versions. To solve the issue go to `https://.sharepoint.com/sites//Lists/ComponentManifests` and remove the entries for SearchBox and Search Results, and then upload the .sppkg for the new release.**
diff --git a/samples/react-search-refiners/spfx/config/package-solution.json b/samples/react-search-refiners/spfx/config/package-solution.json
index 745db4867..46a285e26 100644
--- a/samples/react-search-refiners/spfx/config/package-solution.json
+++ b/samples/react-search-refiners/spfx/config/package-solution.json
@@ -3,7 +3,7 @@
"solution": {
"name": "PnP - Search Web Parts",
"id": "890affef-33e0-4d72-bd72-36399e02143b",
- "version": "2.3.0.0",
+ "version": "2.4.0.1",
"includeClientSideAssets": true,
"skipFeatureDeployment": false,
"isDomainIsolated": false
diff --git a/samples/react-search-refiners/spfx/package.json b/samples/react-search-refiners/spfx/package.json
index eadbd1a86..46f563ca2 100644
--- a/samples/react-search-refiners/spfx/package.json
+++ b/samples/react-search-refiners/spfx/package.json
@@ -1,6 +1,6 @@
{
"name": "pnp-react-search-refiners",
- "version": "2.4.1",
+ "version": "2.4.0",
"private": true,
"engines": {
"node": ">=0.10.0"