From 9922da471f635252169dfef3a2ba466794a2fd11 Mon Sep 17 00:00:00 2001 From: Joseph Fusco Date: Mon, 20 Jun 2016 00:31:32 -0400 Subject: [PATCH] Bump version --- _angled-edges.scss | 4 ++-- bower.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_angled-edges.scss b/_angled-edges.scss index 7461ea6..3403b7a 100644 --- a/_angled-edges.scss +++ b/_angled-edges.scss @@ -1,5 +1,5 @@ //------------------------------------------------------------------------------------- -// Angled Edges v1.0.2 (https://github.com/josephfusco/angled-edges) +// Angled Edges v1.0.3 (https://github.com/josephfusco/angled-edges) // Copyright 2016 Joseph Fusco // Licensed under MIT (https://github.com/josephfusco/angled-edges/blob/master/LICENSE) //------------------------------------------------------------------------------------- @@ -83,7 +83,7 @@ ); // ensure $fill color is using rgb() - $fill-rgb: 'rgb(' + red($fill) + ',' + green($fill) + ',' + blue($fill) + ')'; + $fill-rgb: 'rgb(' + round(red($fill)) + ',' + round(green($fill)) + ',' + round(blue($fill)) + ')'; // capture alpha component of $fill to use with fill-opacity $fill-alpha: alpha($fill); diff --git a/bower.json b/bower.json index c580366..18368d8 100644 --- a/bower.json +++ b/bower.json @@ -2,7 +2,7 @@ "name": "angled-edges", "description": "A SASS mixin for creating angled edges on sections by dynamically encoding SVGs.", "homepage": "https://github.com/josephfusco/angled-edges", - "version": "1.0.2", + "version": "1.0.3", "main": [ "_angled-edges.scss" ],