diff --git a/CHANGELOG.md b/CHANGELOG.md index 6288ec1f026477..419f71ce902c60 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,25 @@ +## 0.12.0 +###### _Sep 25, 2015_ + +##### Breaking Changes +- Theming has been re-done so that material-ui components can be used without having to worry about passing a theme (all components implement a default theme) (#1662) + - There's now a concept of `mui theme` and `raw theme`, `mui theme` is produced from `raw theme` + - `ThemeManager` has been changed, no longer needs `new` in call + - `ThemeManager` produces `mui theme` from `raw theme`. Raw themes may be user-defined. + - Functions in `ThemeManager` allow to modify theme variables. Component-level styles may be overriden in the `mui theme`. + - See new documentation [here](http://material-ui.com/#/customization/themes) +- Function names in the context-pure mixin have been changed (#1711) + - `getContextProps()` has been changed to `getRelevantContextKeys()` + +##### General +- Updated dependency of `react-tap-event-plugin` (#1714) + +##### Component Fixes / Enhancements +- Dialog component (#1717) + - `actions` now has `id` property + - Fixed a bug in dialog where a faulty check caused an error in console + - Text field ipad scrolling in dialog + ## 0.11.1 ###### _Sep 15, 2015_ diff --git a/docs/package.json b/docs/package.json index c33d2f23b1c3c8..b5be4ad18a68c7 100644 --- a/docs/package.json +++ b/docs/package.json @@ -1,6 +1,6 @@ { "name": "material-ui-docs", - "version": "0.11.1", + "version": "0.12.0", "description": "Documentation site for material-ui", "repository": { "type": "git", diff --git a/package.json b/package.json index bf8aeea97f1e6a..3e9ce8d83a70a2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "material-ui", "author": "Call-em-all Engineering Team", - "version": "0.11.1", + "version": "0.12.0", "description": "Material Design UI components built with React", "main": "./lib", "scripts": {