diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b715a9d9..3e2df6e925 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,30 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.14.4] - 2020-01-12 + +#### :bug: Bug Fix + +- `docusaurus-1.x` + - [#2196](https://github.com/facebook/docusaurus/pull/2196) fix(v1): fix JSX highlighting by passing language to Prism ([@gaearon](https://github.com/gaearon)) + +#### :house: Internal + +- `docusaurus-1.x` + - [#2194](https://github.com/facebook/docusaurus/pull/2194) blog: tribute to Endi ([@JoelMarcey](https://github.com/JoelMarcey)) + - [#2163](https://github.com/facebook/docusaurus/pull/2163) blog: 2019 recap ([@yangshun](https://github.com/yangshun)) + - [#2087](https://github.com/facebook/docusaurus/pull/2087) fix(v1): add key to versions.map in versions.js ([@FeynmanDNA](https://github.com/FeynmanDNA)) + - [#2083](https://github.com/facebook/docusaurus/pull/2083) refactor(v1): fix props for ProjectTitle ([@FeynmanDNA](https://github.com/FeynmanDNA)) + +#### Committers: 6 + +- [@TransmissionsDev](https://github.com/TransmissionsDev) +- [@gaearon](https://github.com/gaearon) +- [@janko](https://github.com/janko) +- [@yangshun](https://github.com/yangshun) +- [@JoelMarcey](https://github.com/JoelMarcey) +- [@FeynmanDNA](https://github.com/FeynmanDNA) + ## [1.14.3] - 2019-12-01 #### :bug: Bug Fix @@ -1229,7 +1253,8 @@ N/A - Blog - Documentation -[unreleased]: https://github.com/facebook/docusaurus/compare/v1.14.3...HEAD +[unreleased]: https://github.com/facebook/docusaurus/compare/v1.14.4...HEAD +[1.14.4]: https://github.com/facebook/docusaurus/compare/v1.14.3...v1.14.4 [1.14.3]: https://github.com/facebook/docusaurus/compare/v1.14.2...v1.14.3 [1.14.2]: https://github.com/facebook/docusaurus/compare/v1.14.1...v1.14.2 [1.14.1]: https://github.com/facebook/docusaurus/compare/v1.14.0...v1.14.1 diff --git a/packages/docusaurus-1.x/package.json b/packages/docusaurus-1.x/package.json index bc08aee85c..f21896a1ee 100644 --- a/packages/docusaurus-1.x/package.json +++ b/packages/docusaurus-1.x/package.json @@ -1,7 +1,7 @@ { "name": "docusaurus", "description": "Easy to Maintain Open Source Documentation Websites", - "version": "2.0.0-alpha.40", + "version": "1.14.4", "license": "MIT", "keywords": [ "documentation", diff --git a/website-1.x/package.json b/website-1.x/package.json index c809dd59a1..be3bad2ff6 100644 --- a/website-1.x/package.json +++ b/website-1.x/package.json @@ -14,6 +14,6 @@ "crowdin-download": "crowdin --config ../crowdin.yaml download -b master" }, "dependencies": { - "docusaurus": "^2.0.0-alpha.40" + "docusaurus": "^1.14.4" } } diff --git a/website-1.x/versioned_docs/version-1.14.3/api-doc-markdown.md b/website-1.x/versioned_docs/version-1.14.4/api-doc-markdown.md similarity index 99% rename from website-1.x/versioned_docs/version-1.14.3/api-doc-markdown.md rename to website-1.x/versioned_docs/version-1.14.4/api-doc-markdown.md index 49d7f683c9..3659bbcfe8 100644 --- a/website-1.x/versioned_docs/version-1.14.3/api-doc-markdown.md +++ b/website-1.x/versioned_docs/version-1.14.4/api-doc-markdown.md @@ -1,5 +1,5 @@ --- -id: version-1.14.3-doc-markdown +id: version-1.14.4-doc-markdown title: Markdown Features original_id: doc-markdown --- @@ -165,8 +165,8 @@ print('Hello, world!') #include int main() { - printf("Hello World!"); - return 0; + printf("Hello World!"); + return 0; } ``` diff --git a/website-1.x/versioned_docs/version-1.14.3/api-site-config.md b/website-1.x/versioned_docs/version-1.14.4/api-site-config.md similarity index 100% rename from website-1.x/versioned_docs/version-1.14.3/api-site-config.md rename to website-1.x/versioned_docs/version-1.14.4/api-site-config.md diff --git a/website-1.x/versioned_docs/version-1.14.3/getting-started-installation.md b/website-1.x/versioned_docs/version-1.14.4/getting-started-installation.md similarity index 95% rename from website-1.x/versioned_docs/version-1.14.3/getting-started-installation.md rename to website-1.x/versioned_docs/version-1.14.4/getting-started-installation.md index e450836d3e..aeb4fd672d 100644 --- a/website-1.x/versioned_docs/version-1.14.3/getting-started-installation.md +++ b/website-1.x/versioned_docs/version-1.14.4/getting-started-installation.md @@ -1,5 +1,5 @@ --- -id: version-1.14.3-installation +id: version-1.14.4-installation title: Installation description: Docusaurus was designed from the ground up to be easily installed and used to get your website up and running quickly! original_id: installation @@ -7,6 +7,8 @@ original_id: installation Docusaurus was designed from the ground up to be easily installed and used to get your website up and running quickly. +> **Important Note:** If you are setting up a new Docusaurus website for a Facebook Open Source project, we highly encourage you to use [Docusaurus 2](https://v2.docusaurus.io) instead. + ## Installing Docusaurus We have created a helpful script that will get all of the infrastructure set up for you: diff --git a/website-1.x/versioned_docs/version-1.14.3/getting-started-publishing.md b/website-1.x/versioned_docs/version-1.14.4/getting-started-publishing.md similarity index 97% rename from website-1.x/versioned_docs/version-1.14.3/getting-started-publishing.md rename to website-1.x/versioned_docs/version-1.14.4/getting-started-publishing.md index dc038c8a29..e571d17ca1 100644 --- a/website-1.x/versioned_docs/version-1.14.3/getting-started-publishing.md +++ b/website-1.x/versioned_docs/version-1.14.4/getting-started-publishing.md @@ -1,5 +1,5 @@ --- -id: version-1.14.3-publishing +id: version-1.14.4-publishing title: Publishing your site original_id: publishing --- @@ -51,6 +51,8 @@ now **That's all.** Your docs will automatically be deployed. +> Note that the directory structure Now supports is slightly different from the default directory structure of a Docusaurus project - The `docs` directory has to be within the `website` directory, ideally following the directory structure in this example. You will also have to specify a `customDocsPath` value in `siteConfig.js`. Take a look at the the [now-examples repository for a Docusaurus project](https://github.com/zeit/now-examples/tree/master/docusaurus). + ### Using GitHub Pages Docusaurus was designed to work really well with one of the most popular hosting solutions for open source projects: [GitHub Pages](https://pages.github.com/). diff --git a/website-1.x/versioned_docs/version-1.14.3/guides-translation.md b/website-1.x/versioned_docs/version-1.14.4/guides-translation.md similarity index 100% rename from website-1.x/versioned_docs/version-1.14.3/guides-translation.md rename to website-1.x/versioned_docs/version-1.14.4/guides-translation.md diff --git a/website-1.x/versions.json b/website-1.x/versions.json index de9ee25ee6..a4a96974ed 100644 --- a/website-1.x/versions.json +++ b/website-1.x/versions.json @@ -1,8 +1 @@ -[ - "1.14.3", - "1.13.0", - "1.12.0", - "1.11.x", - "1.10.x", - "1.9.x" -] +["1.14.4", "1.13.0", "1.12.0", "1.11.x", "1.10.x", "1.9.x"]