Skip to content

Commit

Permalink
v1.13.0 (#1789)
Browse files Browse the repository at this point in the history
  • Loading branch information
yangshun authored Sep 16, 2019
1 parent 4d76d58 commit 0584407
Show file tree
Hide file tree
Showing 12 changed files with 833 additions and 8 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,20 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [1.13.0] - 2019-09-15

**Fixed**

- fix: content aligning breaks at IE11 ([#1684](https://github.com/facebook/docusaurus/pull/#1684))
- fix: footer links margin ([#1781](https://github.com/facebook/docusaurus/pull/#1781))
- feat: strip html from TOC ([#1762](https://github.com/facebook/docusaurus/pull/#1762))

**Docs**

- docs: document what should be in .gitignore ([https://github.com/facebook/docusaurus/pull/1709](https://github.com/facebook/docusaurus/pull/1709))
- docs: document what should be in .gitignore ([#1709](https://github.com/facebook/docusaurus/pull/1709))
- docs: change separateCSS to separateCss ([#1735](https://github.com/facebook/docusaurus/pull/#1735))
- docs: fix documented type for the `cleanUrl` option ([#1775](https://github.com/facebook/docusaurus/pull/#1775))
- docs: improve tutorial

## [1.12.0] - 2019-07-20

Expand Down Expand Up @@ -1157,7 +1168,8 @@ N/A
- Blog
- Documentation

[unreleased]: https://github.com/facebook/Docusaurus/compare/v1.12.0...HEAD
[unreleased]: https://github.com/facebook/Docusaurus/compare/v1.13.0...HEAD
[1.13.0]: https://github.com/facebook/Docusaurus/compare/v1.12.0...v1.13.0
[1.12.0]: https://github.com/facebook/Docusaurus/compare/v1.11.1...v1.12.0
[1.11.1]: https://github.com/facebook/Docusaurus/compare/v1.11.0...v1.11.1
[1.11.0]: https://github.com/facebook/Docusaurus/compare/v1.10.0...v1.11.0
Expand Down
6 changes: 3 additions & 3 deletions admin/publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ If you are not currently logged into npm locally:
1. Bump version number in [`package.json`](https://github.com/facebook/Docusaurus/blob/master/package.json).
1. Update the [changelog](https://github.com/facebook/Docusaurus/blob/master/CHANGELOG.md), including at the reference links at the bottom.
1. Do this always, but particularly important if there were any `package.json` changes in this release:
1. If there is no `node_modules` directory in you local Docusaurus version, run `yarn install` and `npm install`.
1. Run `yarn upgrade` to update `yarn.lock` and `npm update` to update `package-lock.json`.
1. From the `website` directory, run `npm run version x.x.x`, where x.x.x is the same version number you updated to in `package.json`.
1. If there is no `node_modules` directory in you local Docusaurus version, run `yarn install` and `npm install`.
1. Run `yarn upgrade` to update `yarn.lock` and `npm update` to update `package-lock.json`.
1. From the `website-1.x` directory, run `npm run docusaurus-version x.x.x`, where x.x.x is the same version number you updated to in `package.json`.
1. Test your PR locally on a project that was created via [these instructions](https://github.com/facebook/Docusaurus/blob/master/admin/local-third-party-project-testing.md).
1. Submit your PR
1. When your PR is merged, rebase to get the PR commit locally.
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-1.x/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus",
"description": "Easy to Maintain Open Source Documentation Websites",
"version": "2.0.0-alpha.24",
"version": "1.13.0",
"license": "MIT",
"keywords": [
"documentation",
Expand Down
2 changes: 1 addition & 1 deletion packages/docusaurus-init-1.x/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "docusaurus-init",
"description": "Initialization script for Docusaurus",
"version": "2.0.0-alpha.24",
"version": "1.13.0",
"license": "MIT",
"preferGlobal": true,
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion website-1.x/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
},
"dependencies": {
"async": "^2.5.0",
"docusaurus": "^2.0.0-alpha.24"
"docusaurus": "1.13.0"
}
}
Loading

0 comments on commit 0584407

Please sign in to comment.