Skip to content

Commit

Permalink
updated version to 0.7.17
Browse files Browse the repository at this point in the history
  • Loading branch information
Dominic Gannaway authored and Dominic Gannaway committed Jul 9, 2016
1 parent 24760ba commit 75a2e58
Show file tree
Hide file tree
Showing 21 changed files with 42 additions and 38 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ npm install --save inferno-router
Pre-bundled files for browser consumption can be found on [our cdnjs](https://cdnjs.com/libraries/inferno):

```
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno-create-element.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno-create-class.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno-component.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno-dom.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno-server.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.16/inferno-router.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno-create-element.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno-create-class.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno-component.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno-dom.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno-server.min.js
https://cdnjs.cloudflare.com/ajax/libs/inferno/0.7.17/inferno-router.min.js
```

## Overview
Expand Down
12 changes: 8 additions & 4 deletions examples/routing/routing.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,19 @@

function Foo() {
return (
t('h2', null, 'I am Foo'),
t('p', null, 'I should only appear when you visit #!/foo')
t('div', null,
t('h2', null, 'I am Foo'),
t('p', null, 'I should only appear when you visit #!/foo')
)
);
}

function Bar() {
return (
t('h2', null, 'I am Bar'),
t('p', null, 'I should only appear when you visit #!/bar')
t('div', null,
t('h2', null, 'I am Bar'),
t('p', null, 'I should only appear when you visit #!/bar')
)
);
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "inferno-src",
"license": "MIT",
"version": "0.7.16",
"version": "0.7.17",
"author": {
"name": "Dominic Gannaway",
"email": "[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions packages/inferno-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-compat",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides a compatibility with React codebases",
"author": {
Expand All @@ -21,7 +21,7 @@
"user interfaces"
],
"dependencies": {
"inferno": "^0.7.16",
"inferno": "^0.7.17",
"proptypes": "^0.14.3"
}
}
2 changes: 1 addition & 1 deletion packages/inferno-component/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-component",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides ES2015 stateful components (with lifecycle events) to Inferno",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions packages/inferno-create-class/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-create-class",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides a helper to create Inferno Components without needing ES2015",
"author": {
Expand All @@ -21,6 +21,6 @@
"user interfaces"
],
"dependencies": {
"inferno": "^0.7.16"
"inferno": "^0.7.17"
}
}
4 changes: 2 additions & 2 deletions packages/inferno-create-element/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-create-element",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides methods to create Inferno VNodes",
"author": {
Expand All @@ -21,6 +21,6 @@
"user interfaces"
],
"dependencies": {
"inferno": "^0.7.16"
"inferno": "^0.7.17"
}
}
4 changes: 2 additions & 2 deletions packages/inferno-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-dom",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides methods to render DOM nodes from Inferno elements",
"author": {
Expand All @@ -21,7 +21,7 @@
"user interfaces"
],
"dependencies": {
"inferno": "^0.7.16"
"inferno": "^0.7.17"
},
"repository": "https://github.com/trueadm/inferno"
}
6 changes: 3 additions & 3 deletions packages/inferno-router/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-router",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides routing functionality for Inferno",
"author": {
Expand All @@ -22,8 +22,8 @@
"router"
],
"dependencies": {
"inferno": "^0.7.16",
"inferno-component": "^0.7.16"
"inferno": "^0.7.17",
"inferno-component": "^0.7.17"
},
"repository": "https://github.com/trueadm/inferno"
}
4 changes: 2 additions & 2 deletions packages/inferno-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-server",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides methods to render HTML strings from Inferno elements",
"author": {
Expand All @@ -26,7 +26,7 @@
"rollup"
],
"dependencies": {
"inferno": "^0.7.16"
"inferno": "^0.7.17"
},
"main": "inferno-server.js",
"repository": "https://github.com/trueadm/inferno"
Expand Down
4 changes: 2 additions & 2 deletions packages/inferno-test-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno-test-utils",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "Provides test utilities to help with creating and maintaining tests for Inferno applications",
"author": {
Expand All @@ -20,7 +20,7 @@
"user interfaces"
],
"dependencies": {
"inferno": "^0.7.16"
"inferno": "^0.7.17"
},
"main": "inferno-test-utils.js",
"repository": "https://github.com/trueadm/inferno"
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-compat.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-compat v0.7.16
* inferno-compat v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-component.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-component v0.7.16
* inferno-component v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-create-class.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-create-class v0.7.16
* inferno-create-class v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-create-element.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-create-element v0.7.16
* inferno-create-element v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-dom.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-dom v0.7.16
* inferno-dom v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-router.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-router v0.7.16
* inferno-router v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-server.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-server v0.7.16
* inferno-server v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno-test-utils.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno-test-utils v0.7.16
* inferno-test-utils v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/dist/inferno.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* inferno v0.7.16
* inferno v0.7.17
* (c) 2016 Dominic Gannaway
* Released under the MIT License.
*/
Expand Down
2 changes: 1 addition & 1 deletion packages/inferno/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inferno",
"version": "0.7.16",
"version": "0.7.17",
"license": "MIT",
"description": "An extremely fast, isomorphic JavaScript library for building modern user interfaces",
"author": {
Expand Down

0 comments on commit 75a2e58

Please sign in to comment.