From 75a2e58d1dcd1b54158c84501b017d3db007061a Mon Sep 17 00:00:00 2001 From: Dominic Gannaway Date: Sat, 9 Jul 2016 15:57:10 -0400 Subject: [PATCH] updated version to 0.7.17 --- README.md | 14 +++++++------- examples/routing/routing.js | 12 ++++++++---- package.json | 2 +- packages/inferno-compat/package.json | 4 ++-- packages/inferno-component/package.json | 2 +- packages/inferno-create-class/package.json | 4 ++-- packages/inferno-create-element/package.json | 4 ++-- packages/inferno-dom/package.json | 4 ++-- packages/inferno-router/package.json | 6 +++--- packages/inferno-server/package.json | 4 ++-- packages/inferno-test-utils/package.json | 4 ++-- packages/inferno/dist/inferno-compat.js | 2 +- packages/inferno/dist/inferno-component.js | 2 +- packages/inferno/dist/inferno-create-class.js | 2 +- packages/inferno/dist/inferno-create-element.js | 2 +- packages/inferno/dist/inferno-dom.js | 2 +- packages/inferno/dist/inferno-router.js | 2 +- packages/inferno/dist/inferno-server.js | 2 +- packages/inferno/dist/inferno-test-utils.js | 2 +- packages/inferno/dist/inferno.js | 2 +- packages/inferno/package.json | 2 +- 21 files changed, 42 insertions(+), 38 deletions(-) diff --git a/README.md b/README.md index fa2ad96cf..00b340e64 100755 --- a/README.md +++ b/README.md @@ -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 diff --git a/examples/routing/routing.js b/examples/routing/routing.js index 1bf2f9b23..d6c97a3fe 100644 --- a/examples/routing/routing.js +++ b/examples/routing/routing.js @@ -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') + ) ); } diff --git a/package.json b/package.json index b5fc0ce68..1f8d3f25d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "inferno-src", "license": "MIT", - "version": "0.7.16", + "version": "0.7.17", "author": { "name": "Dominic Gannaway", "email": "dg@domgan.com" diff --git a/packages/inferno-compat/package.json b/packages/inferno-compat/package.json index 5e3349009..0cfa46d40 100644 --- a/packages/inferno-compat/package.json +++ b/packages/inferno-compat/package.json @@ -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": { @@ -21,7 +21,7 @@ "user interfaces" ], "dependencies": { - "inferno": "^0.7.16", + "inferno": "^0.7.17", "proptypes": "^0.14.3" } } diff --git a/packages/inferno-component/package.json b/packages/inferno-component/package.json index 697c5f2a2..53f3a8f74 100644 --- a/packages/inferno-component/package.json +++ b/packages/inferno-component/package.json @@ -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": { diff --git a/packages/inferno-create-class/package.json b/packages/inferno-create-class/package.json index 0c0d5960a..edc929cd2 100644 --- a/packages/inferno-create-class/package.json +++ b/packages/inferno-create-class/package.json @@ -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": { @@ -21,6 +21,6 @@ "user interfaces" ], "dependencies": { - "inferno": "^0.7.16" + "inferno": "^0.7.17" } } diff --git a/packages/inferno-create-element/package.json b/packages/inferno-create-element/package.json index aa938e498..ef521ea06 100644 --- a/packages/inferno-create-element/package.json +++ b/packages/inferno-create-element/package.json @@ -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": { @@ -21,6 +21,6 @@ "user interfaces" ], "dependencies": { - "inferno": "^0.7.16" + "inferno": "^0.7.17" } } diff --git a/packages/inferno-dom/package.json b/packages/inferno-dom/package.json index f85d0df60..1b14ecc2f 100644 --- a/packages/inferno-dom/package.json +++ b/packages/inferno-dom/package.json @@ -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": { @@ -21,7 +21,7 @@ "user interfaces" ], "dependencies": { - "inferno": "^0.7.16" + "inferno": "^0.7.17" }, "repository": "https://github.com/trueadm/inferno" } diff --git a/packages/inferno-router/package.json b/packages/inferno-router/package.json index ef1c4ed80..d21bc31e4 100644 --- a/packages/inferno-router/package.json +++ b/packages/inferno-router/package.json @@ -1,6 +1,6 @@ { "name": "inferno-router", - "version": "0.7.16", + "version": "0.7.17", "license": "MIT", "description": "Provides routing functionality for Inferno", "author": { @@ -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" } diff --git a/packages/inferno-server/package.json b/packages/inferno-server/package.json index a64342b25..d53c782ac 100644 --- a/packages/inferno-server/package.json +++ b/packages/inferno-server/package.json @@ -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": { @@ -26,7 +26,7 @@ "rollup" ], "dependencies": { - "inferno": "^0.7.16" + "inferno": "^0.7.17" }, "main": "inferno-server.js", "repository": "https://github.com/trueadm/inferno" diff --git a/packages/inferno-test-utils/package.json b/packages/inferno-test-utils/package.json index ae849d610..51c281617 100644 --- a/packages/inferno-test-utils/package.json +++ b/packages/inferno-test-utils/package.json @@ -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": { @@ -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" diff --git a/packages/inferno/dist/inferno-compat.js b/packages/inferno/dist/inferno-compat.js index 3b7eb42c0..ffe4a657e 100644 --- a/packages/inferno/dist/inferno-compat.js +++ b/packages/inferno/dist/inferno-compat.js @@ -1,5 +1,5 @@ /*! - * inferno-compat v0.7.16 + * inferno-compat v0.7.17 * (c) 2016 Dominic Gannaway * Released under the MIT License. */ diff --git a/packages/inferno/dist/inferno-component.js b/packages/inferno/dist/inferno-component.js index 354f1c98b..7f1891ce6 100644 --- a/packages/inferno/dist/inferno-component.js +++ b/packages/inferno/dist/inferno-component.js @@ -1,5 +1,5 @@ /*! - * inferno-component v0.7.16 + * inferno-component v0.7.17 * (c) 2016 Dominic Gannaway * Released under the MIT License. */ diff --git a/packages/inferno/dist/inferno-create-class.js b/packages/inferno/dist/inferno-create-class.js index e1d241670..3c6cd93f4 100644 --- a/packages/inferno/dist/inferno-create-class.js +++ b/packages/inferno/dist/inferno-create-class.js @@ -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. */ diff --git a/packages/inferno/dist/inferno-create-element.js b/packages/inferno/dist/inferno-create-element.js index 2564141ae..a76f5ee8e 100644 --- a/packages/inferno/dist/inferno-create-element.js +++ b/packages/inferno/dist/inferno-create-element.js @@ -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. */ diff --git a/packages/inferno/dist/inferno-dom.js b/packages/inferno/dist/inferno-dom.js index 26f1fe734..ff75c1b52 100644 --- a/packages/inferno/dist/inferno-dom.js +++ b/packages/inferno/dist/inferno-dom.js @@ -1,5 +1,5 @@ /*! - * inferno-dom v0.7.16 + * inferno-dom v0.7.17 * (c) 2016 Dominic Gannaway * Released under the MIT License. */ diff --git a/packages/inferno/dist/inferno-router.js b/packages/inferno/dist/inferno-router.js index 325c82158..2468e3f4d 100644 --- a/packages/inferno/dist/inferno-router.js +++ b/packages/inferno/dist/inferno-router.js @@ -1,5 +1,5 @@ /*! - * inferno-router v0.7.16 + * inferno-router v0.7.17 * (c) 2016 Dominic Gannaway * Released under the MIT License. */ diff --git a/packages/inferno/dist/inferno-server.js b/packages/inferno/dist/inferno-server.js index 89dbbf6b7..05ef9f414 100644 --- a/packages/inferno/dist/inferno-server.js +++ b/packages/inferno/dist/inferno-server.js @@ -1,5 +1,5 @@ /*! - * inferno-server v0.7.16 + * inferno-server v0.7.17 * (c) 2016 Dominic Gannaway * Released under the MIT License. */ diff --git a/packages/inferno/dist/inferno-test-utils.js b/packages/inferno/dist/inferno-test-utils.js index 22126eb4e..fe7125cb2 100644 --- a/packages/inferno/dist/inferno-test-utils.js +++ b/packages/inferno/dist/inferno-test-utils.js @@ -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. */ diff --git a/packages/inferno/dist/inferno.js b/packages/inferno/dist/inferno.js index 7e45fd00c..b45b7d03d 100644 --- a/packages/inferno/dist/inferno.js +++ b/packages/inferno/dist/inferno.js @@ -1,5 +1,5 @@ /*! - * inferno v0.7.16 + * inferno v0.7.17 * (c) 2016 Dominic Gannaway * Released under the MIT License. */ diff --git a/packages/inferno/package.json b/packages/inferno/package.json index 7abe32a1b..2fc63e33b 100644 --- a/packages/inferno/package.json +++ b/packages/inferno/package.json @@ -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": {