diff --git a/Readme.md b/Readme.md index db6ecbc..e49a04b 100755 --- a/Readme.md +++ b/Readme.md @@ -145,6 +145,12 @@ window.addEventListener('viewport-unit-buggyfill-style', function() { ## Changelog +### 0.6.2 (July 21st 2017) ### + +* allow appending generated CSS to `` - [#84](https://github.com/rodneyrehm/viewport-units-buggyfill/pull/84) +* do not break URLs when replacing viewport units - [#78](https://github.com/rodneyrehm/viewport-units-buggyfill/pull/78) +* wrapping everything in an IIFE - [#80](https://github.com/rodneyrehm/viewport-units-buggyfill/issues/80) + ### 0.6.1 (March 16th 2017) ### * fixing UA sniffing for IE10 - [#69](https://github.com/rodneyrehm/viewport-units-buggyfill/issue/69), [#68](https://github.com/rodneyrehm/viewport-units-buggyfill/issue/68) diff --git a/bower.json b/bower.json index eacb8b4..8d7e9c9 100755 --- a/bower.json +++ b/bower.json @@ -1,7 +1,7 @@ { "name": "viewport-units-buggyfill", "description": "Making viewport units (vh|vw|vmin|vmax) work properly in older WebKit and Trident", - "version": "0.6.1", + "version": "0.6.2", "main": [ "./viewport-units-buggyfill.js", "./viewport-units-buggyfill.hacks.js" diff --git a/package.json b/package.json index 737170a..5e0c736 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "viewport-units-buggyfill", - "version": "0.6.1", + "version": "0.6.2", "title": "Viewport Units Buggyfill for Mobile Safari", "description": "Making viewport units (vh|vw|vmin|vmax) work properly in older WebKit and Trident", "homepage": "http://github.com/rodneyrehm/viewport-units-buggyfill/", diff --git a/viewport-units-buggyfill.hacks.js b/viewport-units-buggyfill.hacks.js index 74cec59..6c5006e 100755 --- a/viewport-units-buggyfill.hacks.js +++ b/viewport-units-buggyfill.hacks.js @@ -1,5 +1,5 @@ /*! - * viewport-units-buggyfill.hacks v0.6.1 + * viewport-units-buggyfill.hacks v0.6.2 * @web: https://github.com/rodneyrehm/viewport-units-buggyfill/ * @author: Zoltan Hawryluk - http://www.useragentman.com/ */ diff --git a/viewport-units-buggyfill.js b/viewport-units-buggyfill.js index d2f98c6..1a43db0 100755 --- a/viewport-units-buggyfill.js +++ b/viewport-units-buggyfill.js @@ -1,5 +1,5 @@ /*! - * viewport-units-buggyfill v0.6.1 + * viewport-units-buggyfill v0.6.2 * @web: https://github.com/rodneyrehm/viewport-units-buggyfill/ * @author: Rodney Rehm - http://rodneyrehm.de/en/ */