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

[docs] Add a changelog page #11604

Merged
merged 2 commits into from May 27, 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 5 additions & 2 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
## HEAD
Material-UI strictly follows [Semantic Versioning 2.0.0](http://semver.org/).

Changes. Changes everywhere!
#### Release Schedule

- Weekly release: patch or minor version at the end of every week for routine bugfix or new features (anytime for urgent bugfix).
- Major version release is not included in this schedule for breaking change and new features.

## 1.1.0
###### *May 26, 2018*
Expand Down
19 changes: 11 additions & 8 deletions docs/src/modules/components/withRoot.js
Expand Up @@ -199,26 +199,29 @@ const pages = [
pathname: '/discover-more/vision',
},
{
pathname: '/discover-more/roadmap',
pathname: '/discover-more/backers',
title: 'Sponsors & Backers',
},
{
pathname: '/discover-more/governance',
pathname: '/discover-more/community',
},
{
pathname: '/discover-more/team',
pathname: '/discover-more/related-projects',
},
{
pathname: '/discover-more/backers',
title: 'Sponsors & Backers',
pathname: '/discover-more/showcase',
},
{
pathname: '/discover-more/community',
pathname: '/discover-more/roadmap',
},
{
pathname: '/discover-more/showcase',
pathname: '/discover-more/changelog',
},
{
pathname: '/discover-more/related-projects',
pathname: '/discover-more/team',
},
{
pathname: '/discover-more/governance',
},
],
},
Expand Down
3 changes: 3 additions & 0 deletions docs/src/pages/discover-more/changelog/changelog.md
@@ -0,0 +1,3 @@
# Changelog

All notable changes are described in the [CHANGELOG.md file](https://github.com/mui-org/material-ui/blob/master/CHANGELOG.md).
10 changes: 10 additions & 0 deletions pages/discover-more/changelog.js
@@ -0,0 +1,10 @@
import React from 'react';
import withRoot from 'docs/src/modules/components/withRoot';
import MarkdownDocs from 'docs/src/modules/components/MarkdownDocs';
import markdown from 'docs/src/pages/discover-more/changelog/changelog.md';

function Page() {
return <MarkdownDocs markdown={markdown} />;
}

export default withRoot(Page);