mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-03 11:22:30 +02:00
chore: prepare for v1.14.4 release (#2211)
This commit is contained in:
parent
a2642e8acf
commit
b945e76814
9 changed files with 38 additions and 16 deletions
27
CHANGELOG.md
27
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
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -14,6 +14,6 @@
|
|||
"crowdin-download": "crowdin --config ../crowdin.yaml download -b master"
|
||||
},
|
||||
"dependencies": {
|
||||
"docusaurus": "^2.0.0-alpha.40"
|
||||
"docusaurus": "^1.14.4"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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 <stdio.h>
|
||||
|
||||
int main() {
|
||||
printf("Hello World!");
|
||||
return 0;
|
||||
printf("Hello World!");
|
||||
return 0;
|
||||
}
|
||||
```
|
||||
|
|
@ -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:
|
|
@ -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/).
|
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue