Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Sep 10, 2020
1 parent c315db9 commit dad3d6c
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ If you change these variables before the `react-md-everything` mixin is included
application will be styled with your new theme.

```scss
@import '~react-md/src/scss/react-md';
@import "~react-md/src/scss/react-md";

$md-primary-color: $md-teal-500;
$md-secondary-color: $md-lime-a-400;
Expand Down Expand Up @@ -68,7 +68,7 @@ If you would like some default link styles, you can copy/paste the following blo
}

&:hover {
color: get-color('text', $md-light-theme);
color: get-color("text", $md-light-theme);
text-decoration: underline;
}
}
Expand All @@ -86,7 +86,7 @@ Please see the list of [examples](examples/) for how you can get a project start
<head>
<link
rel="stylesheet"
href="https://unpkg.com/react-md@1.16.1/dist/react-md.deep_purple-pink.min.css"
href="https://unpkg.com/react-md@1.17.0/dist/react-md.deep_purple-pink.min.css"
/>
<link
rel="stylesheet"
Expand All @@ -98,7 +98,7 @@ Please see the list of [examples](examples/) for how you can get a project start
<script src="https://unpkg.com/react/dist/react-with-addons.min.js"></script>
<script src="https://unpkg.com/react-dom/dist/react-dom.min.js"></script>
<script>
<script src="https://unpkg.com/react-md@1.16.1/dist/react-md.min.js"></script>
<script src="https://unpkg.com/react-md@1.17.0/dist/react-md.min.js"></script>
var MyAwesomeComponent = React.createClass({
render: function() {
return React.createElement(ReactMD.Button, {
Expand Down
8 changes: 8 additions & 0 deletions docs/src/components/DiscoverMore/WhatsNew/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## September 2020

### v1.17.0 Release

##### Changelog

- Added `componentRef` and `containerRef` props to `FocusContainer` ([@gamtiq] - [pull-947])

## March 2020

### Migrating to new Domain
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-md",
"version": "1.16.1",
"version": "1.17.0",
"description": "React material design components",
"main": "./lib",
"module": "./es",
Expand Down
2 changes: 1 addition & 1 deletion src/js/Version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default '1.16.1';
export default '1.17.0';

0 comments on commit dad3d6c

Please sign in to comment.