diff --git a/CHANGELOG-2.x.md b/CHANGELOG-2.x.md index fd154b2b5680..5f2661f3b983 100644 --- a/CHANGELOG-2.x.md +++ b/CHANGELOG-2.x.md @@ -20,6 +20,7 @@ function Home() { ([#1860](https://github.com/facebook/Docusaurus/issues/1860)) ### Bug Fixes +- Fix `@theme/Tabs` component to be able to create tabs with only one item. - Fix MDX `@theme/Heading` component. If there is no id, it should not create anchor link. - Fixed a bug in which if `themeConfig.algolia` is not defined, the custom searchbar won't appear. If you've swizzled Algolia `SearchBar` component before, please update your source code otherwise CSS might break. See [#1909](https://github.com/facebook/docusaurus/pull/1909/files) for reference. diff --git a/website/docs/migrating-from-v1-to-v2.md b/website/docs/migrating-from-v1-to-v2.md index 760d7f5d7d14..21d0581f8a81 100644 --- a/website/docs/migrating-from-v1-to-v2.md +++ b/website/docs/migrating-from-v1-to-v2.md @@ -37,8 +37,8 @@ Meanwhile, the default doc site functionalities provided by Docusaurus 1 are now { dependencies: { - "docusaurus": "^1.x.x", -+ "@docusaurus/core": "^2.0.0-alpha.31", -+ "@docusaurus/preset-classic": "^2.0.0-alpha.31", ++ "@docusaurus/core": "^2.0.0-alpha.32", ++ "@docusaurus/preset-classic": "^2.0.0-alpha.32", } } ``` @@ -72,8 +72,8 @@ A typical Docusaurus 2 `package.json` may look like this: "deploy": "docusaurus deploy" }, "dependencies": { - "@docusaurus/core": "^2.0.0-alpha.31", - "@docusaurus/preset-classic": "^2.0.0-alpha.31", + "@docusaurus/core": "^2.0.0-alpha.32", + "@docusaurus/preset-classic": "^2.0.0-alpha.32", "classnames": "^2.2.6", "react": "^16.10.2", "react-dom": "^16.10.2"