From 9c9618cbd134cb48c22f64dd49f3b7007b14a0b1 Mon Sep 17 00:00:00 2001 From: Olivier Tassinari Date: Sun, 27 May 2018 13:45:13 +0200 Subject: [PATCH] [docs] Add a changelog page (#11604) * [docs] Add a changelog page * in --- CHANGELOG.md | 7 +++++-- docs/src/modules/components/withRoot.js | 19 +++++++++++-------- .../discover-more/changelog/changelog.md | 3 +++ pages/discover-more/changelog.js | 10 ++++++++++ 4 files changed, 29 insertions(+), 10 deletions(-) create mode 100644 docs/src/pages/discover-more/changelog/changelog.md create mode 100644 pages/discover-more/changelog.js 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..cd0cd3bf8395ce --- /dev/null +++ b/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). 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);