Skip to content

Commit

Permalink
[docs] Add a changelog page
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed May 27, 2018
1 parent 10e7e4c commit dddb802
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 10 deletions.
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

The changelog is [hosted on GitHub](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);

0 comments on commit dddb802

Please sign in to comment.