From a60492797de6c141b0587b66811c583446f19c46 Mon Sep 17 00:00:00 2001 From: David Clark Date: Sat, 31 Oct 2015 07:20:28 -0700 Subject: [PATCH] Prepare 1.3.0 --- CHANGELOG.md | 2 +- bower.json | 2 +- dist/_scut.scss | 31 +++++++++++++++---------------- docs/content/data.yml | 2 +- gulpfile.js | 2 +- lib/scut.rb | 4 ++-- package.json | 2 +- 7 files changed, 22 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e89edd3..9bab79c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Head +## 1.3.0 - Added `list-unstyled`. ## 1.2.1 diff --git a/bower.json b/bower.json index f9e0361..76e416a 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "Scut", - "version": "1.2.1", + "version": "1.3.0", "homepage": "http://davidtheclark.github.io/scut/", "authors": [ "David Clark " diff --git a/dist/_scut.scss b/dist/_scut.scss index e260479..3e16fa6 100644 --- a/dist/_scut.scss +++ b/dist/_scut.scss @@ -1,7 +1,7 @@ /* * Scut, a collection of Sass utilities * to ease and improve our implementations of common style-code patterns. -* v1.2.1 +* v1.3.0 * Docs at http://davidtheclark.github.io/scut */ @@ -702,21 +702,6 @@ $scut-rem-base: 16 !default; %scut-fill { @include scut-fill; } -// SCUT LINK UNSTYLED -// http://davidtheclark.github.io/scut/#link-unstyled - -// Depends on `scut-strip-unit`. -@mixin scut-link-unstyled() { - - text-decoration: none; - color: inherit; - -} - -%scut-link-unstyled { - @include scut-link-unstyled(); -} - @mixin scut-list-custom ( $content: "\2022", $marker-width: 0.75em, @@ -1434,6 +1419,20 @@ $scut-swhitesquare: "\25ab"; %scut-link-bb { @include scut-link-bb; } +// SCUT LINK UNSTYLED +// http://davidtheclark.github.io/scut/#link-unstyled + +@mixin scut-link-unstyled() { + + text-decoration: none; + color: inherit; + +} + +%scut-link-unstyled { + @include scut-link-unstyled(); +} + @mixin scut-reverse-italics ( $elements: null ) { diff --git a/docs/content/data.yml b/docs/content/data.yml index b401b83..4c45983 100644 --- a/docs/content/data.yml +++ b/docs/content/data.yml @@ -1,4 +1,4 @@ -"version": "1.2.1" +"version": "1.3.0" github-url: "https://github.com/davidtheclark/scut/blob/v" github-home: "https://github.com/davidtheclark/scut" codepen-url: "http://codepen.io/davidtheclark/pen/FhqGc" \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js index 26039b8..9db62b1 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1,4 +1,4 @@ -var currentVersion = '1.2.1'; +var currentVersion = '1.3.0'; var moment = require('moment'); var runSequence = require('run-sequence'); diff --git a/lib/scut.rb b/lib/scut.rb index 9aeec13..2556320 100644 --- a/lib/scut.rb +++ b/lib/scut.rb @@ -5,6 +5,6 @@ Compass::Frameworks.register('Scut', :stylesheets_directory => stylesheets_dir) module Scut - VERSION = "1.2.1" - DATE = "2015-07-30" + VERSION = "1.3.0" + DATE = "2015-10-31" end \ No newline at end of file diff --git a/package.json b/package.json index 4667a84..98421ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "scut", - "version": "1.2.1", + "version": "1.3.0", "homepage": "http://davidtheclark.github.io/scut/", "authors": [ "David Clark "