Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publish v1.1.3 #695

Merged
merged 2 commits into from
May 23, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a

## [Unreleased]

## [1.1.3] - 2018-05-23

`npm` had an issue where some packages were not being published. This should hopefully be resolved now; publishing a new version just in case.

Also, welcome [TextLint](https://textlint.github.io/) and [Open Power Quality](https://openpowerquality.org/) as new [users](https://docusaurus.io/en/users.html).

Thank you to the following contributors who helped with this release:

- @azu
- @philipmjohnson
- @violabg
- @sebelga

### Fixed/Changed

- `onPageNav` now [shows](https://github.com/facebook/Docusaurus/commit/2c74d937607fcd84677be5d6990ca2a3b4ba8d7a) in Safari.

## [1.1.2] - 2018-05-21

Another HOTFIX release. One of our third-party dependencies, `tree-node-cli` didn't support Node 10+. The package has been fixed and we have updated to use the new version of that package.
Expand Down Expand Up @@ -424,7 +441,8 @@ N/A
- Blog
- Documentation

[Unreleased]: https://github.com/facebook/Docusaurus/compare/v1.1.2...HEAD
[Unreleased]: https://github.com/facebook/Docusaurus/compare/v1.1.3...HEAD
[1.1.3]: https://github.com/facebook/Docusaurus/compare/v1.1.2...v1.1.3
[1.1.2]: https://github.com/facebook/Docusaurus/compare/v1.1.1...v1.1.2
[1.1.1]: https://github.com/facebook/Docusaurus/compare/v1.1.0...v1.1.1
[1.1.0]: https://github.com/facebook/Docusaurus/compare/v1.0.15...v1.1.0
Expand Down
7 changes: 5 additions & 2 deletions admin/publish.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ If you are not currently logged into npm locally:

## Publish

1. Bump version number in `package.json`
2. `npm publish`
1. Bump version number in [`package.json`](https://github.com/facebook/Docusaurus/blob/master/package.json).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yay for this!

1. Update the [change log](https://github.com/facebook/Docusaurus/blob/master/CHANGELOG.md).
1. Run `npm install` and `yarn install` to update `package-lock.json` and/or `yarn.lock`.
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. Run `npm publish`

### What version should you use?

Expand Down
Loading