Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Dec 6, 2018
1 parent b9d5868 commit 9c57194
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -80,14 +80,14 @@ Please see the list of [examples](examples/) for how you can get a project start
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://unpkg.com/react-md@1.9.1/dist/react-md.deep_purple-pink.min.css">
<link rel="stylesheet" href="https://unpkg.com/react-md@1.9.2/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/react-md@1.9.1/dist/react-md.min.js"></script>
<script src="https://unpkg.com/react-md@1.9.2/dist/react-md.min.js"></script>
<script>
var MyAwesomeComponent = React.createClass({
render: function() {
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
@@ -1,6 +1,6 @@
{
"name": "react-md-documentation",
"version": "1.9.1",
"version": "1.9.2",
"description": "The documentaiton website for react-md",
"homepage": "https://react-md.mlaursen.com",
"private": true,
Expand Down
10 changes: 10 additions & 0 deletions docs/src/components/DiscoverMore/WhatsNew/README.md
@@ -1,3 +1,13 @@
## December 2018
### v1.9.2 Released
##### Changelog
- Updated the `autoComplete` prop type to be `PropTypes.string` for the `Autocomplete` component. [issues-703]
- Updated the `Tabs` component to be able to fix the selected tab indicator's height to match the value defined in SCSS. [issues-764]
- Fixed `Tooltip`s not disappearing when the user blurs a tooltip target. ([@ryanmurakami] - [pull-814])

### Documentation Change
- Updated the testing page to have information about missing [window.matchMedia](/discover-more/testing#window-matchmedia).

## November 2018
### v1.9.1 Released
##### Changelog
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "react-md",
"version": "1.9.1",
"version": "1.9.2",
"description": "React material design components",
"main": "./lib",
"module": "./es",
Expand Down
2 changes: 1 addition & 1 deletion src/js/Version.js
@@ -1 +1 @@
export default '1.9.1';
export default '1.9.2';

0 comments on commit 9c57194

Please sign in to comment.