chore: release v3.2.0 (#1479)
Co-authored-by: Clément Vannicatte <vannicattec@gmail.com>
This commit is contained in:
parent
8f67c47488
commit
85b54cc82e
9 changed files with 27 additions and 15 deletions
12
CHANGELOG.md
12
CHANGELOG.md
|
|
@ -1,3 +1,15 @@
|
|||
# [3.2.0](https://github.com/algolia/docsearch/compare/v3.1.1...v3.2.0) (2022-08-02)
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- dependencies 2022-07-25 ([#1451](https://github.com/algolia/docsearch/issues/1451)) ([2c64362](https://github.com/algolia/docsearch/commit/2c64362067376a76575b7b5131972f71c920a406))
|
||||
- dependencies 2022-08-01 ([#1471](https://github.com/algolia/docsearch/issues/1471)) ([8f67c47](https://github.com/algolia/docsearch/commit/8f67c474881c088ae5a8c1595fa844c210940140))
|
||||
- **form:** validate URL correctly ([26b0af9](https://github.com/algolia/docsearch/commit/26b0af98e01b36e5238ab8e2b1ba9d5212a1e1fe))
|
||||
|
||||
### Features
|
||||
|
||||
- **styles:** set medium breakpoint to standarized value ([#1446](https://github.com/algolia/docsearch/issues/1446)) ([8e2e90e](https://github.com/algolia/docsearch/commit/8e2e90e980b03e99ec7ae3231dbe79e44db643da))
|
||||
|
||||
## [3.1.1](https://github.com/algolia/docsearch/compare/v3.1.0...v3.1.1) (2022-06-30)
|
||||
|
||||
### Bug Fixes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/react-example",
|
||||
"description": "DocSearch v3 React example",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
|
|
@ -9,8 +9,8 @@
|
|||
"start": "parcel index.html"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/css": "3.1.1",
|
||||
"@docsearch/react": "3.1.1",
|
||||
"@docsearch/css": "3.2.0",
|
||||
"@docsearch/react": "3.2.0",
|
||||
"react": "18.1.0",
|
||||
"react-dom": "18.1.0"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/js-example",
|
||||
"description": "DocSearch v3 Vanilla JavaScript example",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
|
|
@ -9,8 +9,8 @@
|
|||
"start": "parcel index.html"
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/css": "3.1.1",
|
||||
"@docsearch/js": "3.1.1"
|
||||
"@docsearch/css": "3.2.0",
|
||||
"@docsearch/js": "3.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"parcel": "2.0.0-beta.2"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"packages": ["packages/*", "examples/*"],
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"npmClient": "yarn",
|
||||
"useWorkspaces": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/css",
|
||||
"description": "Styles for DocSearch.",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"license": "MIT",
|
||||
"homepage": "https://docsearch.algolia.com",
|
||||
"repository": "algolia/docsearch",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/js",
|
||||
"description": "JavaScript package for DocSearch, the best search experience for docs.",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"license": "MIT",
|
||||
"homepage": "https://docsearch.algolia.com",
|
||||
"repository": "algolia/docsearch",
|
||||
|
|
@ -30,7 +30,7 @@
|
|||
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
|
||||
},
|
||||
"dependencies": {
|
||||
"@docsearch/react": "3.1.1",
|
||||
"@docsearch/react": "3.2.0",
|
||||
"preact": "^10.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@docsearch/react",
|
||||
"description": "React package for DocSearch, the best search experience for docs.",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"license": "MIT",
|
||||
"homepage": "https://docsearch.algolia.com",
|
||||
"repository": "algolia/docsearch",
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
"dependencies": {
|
||||
"@algolia/autocomplete-core": "1.7.1",
|
||||
"@algolia/autocomplete-preset-algolia": "1.7.1",
|
||||
"@docsearch/css": "3.1.1",
|
||||
"@docsearch/css": "3.2.0",
|
||||
"algoliasearch": "^4.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
export const version = '3.1.1';
|
||||
export const version = '3.2.0';
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@docsearch/website",
|
||||
"version": "3.1.1",
|
||||
"version": "3.2.0",
|
||||
"private": true,
|
||||
"homepage": "https://docsearch.algolia.com/",
|
||||
"scripts": {
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@algolia/ui-library": "4.0.0-beta.71",
|
||||
"@docsearch/react": "3.1.1",
|
||||
"@docsearch/react": "3.2.0",
|
||||
"@docusaurus/core": "2.0.0-rc.1",
|
||||
"@docusaurus/preset-classic": "2.0.0-rc.1",
|
||||
"@mdx-js/react": "^1.6.22",
|
||||
|
|
|
|||
Loading…
Reference in a new issue