From 07998fa92682aaea1b738f08c8e7e0db93a0b4ed Mon Sep 17 00:00:00 2001 From: Rodney Rehm Date: Wed, 15 Jul 2015 18:29:48 +0200 Subject: [PATCH] chore(build): bumping version to 0.5.4 --- Readme.md | 4 ++++ bower.json | 2 +- package.json | 2 +- viewport-units-buggyfill.hacks.js | 2 +- viewport-units-buggyfill.js | 4 ++-- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/Readme.md b/Readme.md index 46f2cd0..134b68f 100755 --- a/Readme.md +++ b/Readme.md @@ -124,6 +124,10 @@ In CSS you can declare fallbacks to be used by the buggyfill's hacks: ## Changelog +### 0.5.4 (July 15th 2015) ### + +* changing Internet Explorer detection from Conditional Comments to UA sniffing - ([#57](https://github.com/rodneyrehm/viewport-units-buggyfill/pull/57) by [dillonlucente](https://github.com/dillonlucente), [#43](https://github.com/rodneyrehm/viewport-units-buggyfill/pull/43), [#40](https://github.com/rodneyrehm/viewport-units-buggyfill/pull/40)) + ### 0.5.3 (April 21st 2015) ### * fixing CORS importer to respect `data-viewport-units-buggyfill="ignore"` ([#48](https://github.com/rodneyrehm/viewport-units-buggyfill/pull/48)) diff --git a/bower.json b/bower.json index 7d1d5e8..6cf381a 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.5.3", + "version": "0.5.4", "main": [ "./viewport-units-buggyfill.js", "./viewport-units-buggyfill.hacks.js" diff --git a/package.json b/package.json index b03e7ae..6b13d0a 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "viewport-units-buggyfill", - "version": "0.5.3", + "version": "0.5.4", "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 5f441d8..b83088a 100755 --- a/viewport-units-buggyfill.hacks.js +++ b/viewport-units-buggyfill.hacks.js @@ -1,5 +1,5 @@ /*! - * viewport-units-buggyfill.hacks v0.5.3 + * viewport-units-buggyfill.hacks v0.5.4 * @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 81bb9dd..c339042 100755 --- a/viewport-units-buggyfill.js +++ b/viewport-units-buggyfill.js @@ -1,5 +1,5 @@ /*! - * viewport-units-buggyfill v0.5.3 + * viewport-units-buggyfill v0.5.4 * @web: https://github.com/rodneyrehm/viewport-units-buggyfill/ * @author: Rodney Rehm - http://rodneyrehm.de/en/ */ @@ -397,7 +397,7 @@ } return { - version: '0.5.3', + version: '0.5.4', findProperties: findProperties, getCss: getReplacedViewportUnits, init: initialize,