diff --git a/CHANGELOG.md b/CHANGELOG.md index 19ad5d474889ff..0dfdffe4eb119d 100644 --- a/CHANGELOG.md +++ b/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* diff --git a/docs/src/modules/components/withRoot.js b/docs/src/modules/components/withRoot.js index 0281cc57908f83..4ea57002a13b29 100644 --- a/docs/src/modules/components/withRoot.js +++ b/docs/src/modules/components/withRoot.js @@ -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', }, ], }, diff --git a/docs/src/pages/discover-more/changelog/changelog.md b/docs/src/pages/discover-more/changelog/changelog.md new file mode 100644 index 00000000000000..1d114d9cf7a10a --- /dev/null +++ b/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). diff --git a/pages/discover-more/changelog.js b/pages/discover-more/changelog.js new file mode 100644 index 00000000000000..6d896545867952 --- /dev/null +++ b/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 ; +} + +export default withRoot(Page);