Skip to content

Commit

Permalink
Version bump to 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Mar 13, 2017
1 parent 29b39d1 commit 5da0d99
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 11 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,12 @@ You can also use the UMD build from [unpkg](https://unpkg.com/#/):

```html
<!-- Production Version -->
<link rel="stylesheet" href="https://unpkg.com/[email protected].7/dist/react-md.deep_purple-pink.min.css">
<script src="https://unpkg.com/[email protected].7/dist/react-md.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected].8/dist/react-md.deep_purple-pink.min.css">
<script src="https://unpkg.com/[email protected].8/dist/react-md.min.js"></script>

<!-- Development Version -->
<!-- development version of CSS unavailable -->
<script src="https://unpkg.com/[email protected].7/dist/react-md.js"></script>
<script src="https://unpkg.com/[email protected].8/dist/react-md.js"></script>
```


Expand All @@ -140,14 +140,14 @@ You can also use the UMD build from [unpkg](https://unpkg.com/#/):
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/[email protected].7/dist/react-md.deep_purple-pink.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected].8/dist/react-md.deep_purple-pink.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons|Roboto:400,500,700">
</head>
<body>
<div id="app"></div>
<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 src="https://unpkg.com/[email protected].7/dist/react-md.min.js"></script>
<script src="https://unpkg.com/[email protected].8/dist/react-md.min.js"></script>
<script>
var MyAwesomeComponent = React.createClass({
render: function() {
Expand Down
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-md-api",
"version": "1.0.7",
"version": "1.0.8",
"private": true,
"description": "The Read in CRUD for react-md",
"main": "src/server/index.js",
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-md-documentation",
"version": "1.0.7",
"version": "1.0.8",
"description": "",
"scripts": {
"prebuild": "rimraf dist && rimraf src/server/themes",
Expand Down
10 changes: 8 additions & 2 deletions docs/src/shared/readmes/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
## March 2017
### v1.0.8 Released

##### Changelog
- My initial attempt at the defaultVisible prop not working correctly was incorrect. Updated the behavior as mentioned in
the new ticket. [#288](https://github.com/mlaursen/react-md/issues/288)

### v1.0.7 Released

##### Changelog
- Fixed the Drawer's defaultVisible prop not working entirely corrrectly. [#286](https://github.com/mlaursen/react-md/286)
- Fixed the DateTimeFormat fake mock. [#285](https://github.com/mlaursen/react-md/285)
- Fixed the Drawer's defaultVisible prop not working entirely corrrectly. [#286](https://github.com/mlaursen/react-md/issues/286)
- Fixed the DateTimeFormat fake mock. [#285](https://github.com/mlaursen/react-md/issues/285)
- Fixed the Date/Time pickers to not open when disabled. [#281](https://github.com/mlaursen/react-md/issues/281)
- Fixed the prop warning for MenuButton and passed correct props to Menu. [#278](https://github.com/mlaursen/react-md/issues/278)
- Fixed the Menu attempting to setState after it had unmounted. [#268](https://github.com/mlaursen/react-md/issues/268)
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.0.7",
"version": "1.0.8",
"description": "React material design components",
"main": "./lib",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/js/Drawers/Drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ export default class Drawer extends PureComponent {

/**
* An optional function to call when the visibility of the drawer is changed. The function will
* be called with the new visibility statee.
* be called with the new visibility state.
*
* ```js
* onVisibilityToggle(!currentlyVisible);
Expand Down

0 comments on commit 5da0d99

Please sign in to comment.