Skip to content

Commit

Permalink
Merge branch 'main' into chore/renovateBaseBranch
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts committed Aug 17, 2022
2 parents 9b903fb + 18cdceb commit 160758a
Show file tree
Hide file tree
Showing 9 changed files with 33 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,10 @@
## [3.2.1](https://github.com/algolia/docsearch/compare/v3.2.0...v3.2.1) (2022-08-16)

### Bug Fixes

* **deps:** make react an optional peer dependency in @docsearch/react ([#1273](https://github.com/algolia/docsearch/issues/1273)) ([eb44d0c](https://github.com/algolia/docsearch/commit/eb44d0c2b72f700b81cf1390539592156b2580b6))
* dependencies 2022-08-08 ([#1480](https://github.com/algolia/docsearch/issues/1480)) ([587ccd1](https://github.com/algolia/docsearch/commit/587ccd1cf9ba5529c8c7ded3547e21849321a8d0))

# [3.2.0](https://github.com/algolia/docsearch/compare/v3.1.1...v3.2.0) (2022-08-02)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions examples/demo/package.json
@@ -1,16 +1,16 @@
{
"name": "@docsearch/react-example",
"description": "DocSearch v3 React example",
"version": "3.2.0",
"version": "3.2.1",
"private": true,
"license": "MIT",
"scripts": {
"build": "parcel build index.html",
"start": "parcel index.html"
},
"dependencies": {
"@docsearch/css": "3.2.0",
"@docsearch/react": "3.2.0",
"@docsearch/css": "3.2.1",
"@docsearch/react": "3.2.1",
"react": "18.1.0",
"react-dom": "18.1.0"
},
Expand Down
6 changes: 3 additions & 3 deletions examples/js-demo/package.json
@@ -1,16 +1,16 @@
{
"name": "@docsearch/js-example",
"description": "DocSearch v3 Vanilla JavaScript example",
"version": "3.2.0",
"version": "3.2.1",
"private": true,
"license": "MIT",
"scripts": {
"build": "parcel build index.html",
"start": "parcel index.html"
},
"dependencies": {
"@docsearch/css": "3.2.0",
"@docsearch/js": "3.2.0"
"@docsearch/css": "3.2.1",
"@docsearch/js": "3.2.1"
},
"devDependencies": {
"parcel": "2.0.0-beta.2"
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"packages": ["packages/*", "examples/*"],
"version": "3.2.0",
"version": "3.2.1",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion packages/docsearch-css/package.json
@@ -1,7 +1,7 @@
{
"name": "@docsearch/css",
"description": "Styles for DocSearch.",
"version": "3.2.0",
"version": "3.2.1",
"license": "MIT",
"homepage": "https://docsearch.algolia.com",
"repository": "algolia/docsearch",
Expand Down
4 changes: 2 additions & 2 deletions packages/docsearch-js/package.json
@@ -1,7 +1,7 @@
{
"name": "@docsearch/js",
"description": "JavaScript package for DocSearch, the best search experience for docs.",
"version": "3.2.0",
"version": "3.2.1",
"license": "MIT",
"homepage": "https://docsearch.algolia.com",
"repository": "algolia/docsearch",
Expand Down Expand Up @@ -30,7 +30,7 @@
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
},
"dependencies": {
"@docsearch/react": "3.2.0",
"@docsearch/react": "3.2.1",
"preact": "^10.0.0"
}
}
15 changes: 13 additions & 2 deletions packages/docsearch-react/package.json
@@ -1,7 +1,7 @@
{
"name": "@docsearch/react",
"description": "React package for DocSearch, the best search experience for docs.",
"version": "3.2.0",
"version": "3.2.1",
"license": "MIT",
"homepage": "https://docsearch.algolia.com",
"repository": "algolia/docsearch",
Expand Down Expand Up @@ -35,12 +35,23 @@
"dependencies": {
"@algolia/autocomplete-core": "1.7.1",
"@algolia/autocomplete-preset-algolia": "1.7.1",
"@docsearch/css": "3.2.0",
"@docsearch/css": "3.2.1",
"algoliasearch": "^4.0.0"
},
"peerDependencies": {
"@types/react": ">= 16.8.0 < 19.0.0",
"react": ">= 16.8.0 < 19.0.0",
"react-dom": ">= 16.8.0 < 19.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
}
}
2 changes: 1 addition & 1 deletion packages/docsearch-react/src/version.ts
@@ -1 +1 @@
export const version = '3.2.0';
export const version = '3.2.1';
4 changes: 2 additions & 2 deletions packages/website/package.json
@@ -1,6 +1,6 @@
{
"name": "@docsearch/website",
"version": "3.2.0",
"version": "3.2.1",
"private": true,
"homepage": "https://docsearch.algolia.com/",
"scripts": {
Expand All @@ -17,7 +17,7 @@
},
"dependencies": {
"@algolia/ui-library": "4.0.0-beta.71",
"@docsearch/react": "3.2.0",
"@docsearch/react": "3.2.1",
"@docusaurus/core": "2.0.1",
"@docusaurus/preset-classic": "2.0.1",
"@mdx-js/react": "^1.6.22",
Expand Down

0 comments on commit 160758a

Please sign in to comment.