Skip to content

Commit

Permalink
Prepare 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtheclark committed Oct 31, 2015
1 parent 951a0b2 commit a604927
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 23 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Head
## 1.3.0
- Added `list-unstyled`.

## 1.2.1
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Scut",
"version": "1.2.1",
"version": "1.3.0",
"homepage": "http://davidtheclark.github.io/scut/",
"authors": [
"David Clark <david.dave.clark@gmail.com>"
Expand Down
31 changes: 15 additions & 16 deletions dist/_scut.scss
Original file line number Diff line number Diff line change
@@ -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
*/

Expand Down Expand Up @@ -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,
Expand Down Expand Up @@ -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
) {
Expand Down
2 changes: 1 addition & 1 deletion docs/content/data.yml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var currentVersion = '1.2.1';
var currentVersion = '1.3.0';

var moment = require('moment');
var runSequence = require('run-sequence');
Expand Down
4 changes: 2 additions & 2 deletions lib/scut.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scut",
"version": "1.2.1",
"version": "1.3.0",
"homepage": "http://davidtheclark.github.io/scut/",
"authors": [
"David Clark <david.dave.clark@gmail.com>"
Expand Down

0 comments on commit a604927

Please sign in to comment.