Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Feb 15, 2017
1 parent 6414843 commit 0bfcaa5
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 9 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].5/dist/react-md.deep_purple-pink.min.css">
<script src="https://unpkg.com/[email protected].5/dist/react-md.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/[email protected].6/dist/react-md.deep_purple-pink.min.css">
<script src="https://unpkg.com/[email protected].6/dist/react-md.min.js"></script>

<!-- Development Version -->
<!-- development version of CSS unavailable -->
<script src="https://unpkg.com/[email protected].5/dist/react-md.js"></script>
<script src="https://unpkg.com/[email protected].6/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].5/dist/react-md.deep_purple-pink.min.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected].6/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].5/dist/react-md.min.js"></script>
<script src="https://unpkg.com/[email protected].6/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.2",
"version": "1.0.6",
"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.2",
"version": "1.0.6",
"description": "",
"scripts": {
"prebuild": "rimraf dist && rimraf src/server/themes",
Expand Down
13 changes: 12 additions & 1 deletion docs/src/shared/readmes/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
## February 2017
### v1.0.6 Released

##### Changelog
- Fixed DatePicker's [calendar Date when controlled](https://github.com/mlaursen/react-md/issues/245)
- Added [controlled warnings](https://github.com/mlaursen/react-md/commit/d46cf4c6e356aa69ccbcd8fa7903451c4e20e307) to pickers.
- Allowed non-material design colors to compile [without errors](https://github.com/mlaursen/react-md/issues/244).
- FontIcon force size [fix](https://github.com/mlaursen/react-md/issues/221).
- Allowed a TableRow to only have a single column.

### v1.0.5 Released

##### Changelog
Expand All @@ -13,8 +22,10 @@ to be more accurate.
- Fixed the TableRows's [onCheckboxClick callback](https://github.com/mlaursen/react-md/commit/69fbdd8fa8519f652fe0d6c8cce4ce0905a5c4a8) to
match documentation.

> I had a moment and accidentally published 1.0.4 with the same code as 1.0.3
## January 2017
### v1.0.4 Released
### v1.0.3 Released
Minor bugfixes.

##### Changelog
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.5",
"version": "1.0.6",
"description": "React material design components",
"main": "./lib",
"files": [
Expand Down

0 comments on commit 0bfcaa5

Please sign in to comment.