Skip to content

Commit

Permalink
v0.8.0 and some incidental bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davidtheclark committed Dec 14, 2013
1 parent fe3f59e commit 7bc7391
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,4 +1,4 @@
### 0.8.0 (in the works)
### 0.8.0
- Fixed a bug preventing the results of `scut-em` and `scut-rem` from being used in calculations.
- Added `scut-truncate`.
- Delted "tests" in repository. Devs should use Codepen. It's easy.
Expand Down
2 changes: 1 addition & 1 deletion Gruntfile.coffee
@@ -1,4 +1,4 @@
currentVersion = "0.7.2"
currentVersion = "0.8.0"

path = require "path"

Expand Down
2 changes: 1 addition & 1 deletion bower.json
@@ -1,6 +1,6 @@
{
"name": "Scut",
"version": "0.7.2",
"version": "0.8.0",
"homepage": "http://davidtheclark.github.io/scut/",
"authors": [
"David Clark <david.dave.clark@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion dist/_scut.scss
@@ -1,6 +1,6 @@
/*
* Scut, a collection of Sass utilities to ease and improve our implementations of common style-code patterns.
* v0.7.2
* v0.8.0
* Docs at http://davidtheclark.github.io/scut
*/

Expand Down
3 changes: 2 additions & 1 deletion docs/dev/assemble/data.yml
@@ -1,9 +1,10 @@
"version": "0.7.2"
"version": "0.8.0"
github-url: "https://github.com/davidtheclark/scut/blob/v"
github-home: "https://github.com/davidtheclark/scut"
codepen-url: "http://codepen.io/davidtheclark/pen/yCadJ"

old-versions:
- 0.7.0

categories:

Expand Down
4 changes: 2 additions & 2 deletions docs/dev/assemble/partials/intro.hbs
Expand Up @@ -20,12 +20,12 @@

You might also want to [have a look at the changelog]({{github-home}}/blob/master/CHANGELOG.md).

{{!-- Or view older docs:
Or view older docs:
<ul class="older-docs">
{{#each old-versions}}
<li><a href="old/v{{this}}">v{{this}}</a></li>
{{/each}}
</ul> --}}
</ul>

{{/markdown}}

Expand Down
2 changes: 2 additions & 0 deletions docs/dev/assets/scss/_help.scss
Expand Up @@ -3,7 +3,9 @@
z-index: 3;
background: rgba(0,0,0,0.7);

-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000;
perspective: 1000;
transition: transform 0.3s linear;
.preload & {
Expand Down
4 changes: 2 additions & 2 deletions lib/scut.rb
Expand Up @@ -5,6 +5,6 @@
Compass::Frameworks.register('Scut', :stylesheets_directory => stylesheets_dir)

module Scut
VERSION = "0.7.2"
DATE = "2013-12-08"
VERSION = "0.8.0"
DATE = "2013-12-13"
end
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "scut",
"version": "0.7.2",
"version": "0.8.0",
"description": "SCSS utilities",
"keywords": [],
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions release-checklist.md
Expand Up @@ -2,6 +2,7 @@ To release:

- Make sure notes have been added to changelog.
- Change version number at top of Gruntfile.
- Maybe add old version to `data.yml`.
- Run `grunt version`.
- Build and push a new gem (`gem build scut.gemspec`, `gem push scut...gem`).
- Delete the gem.
Expand Down

0 comments on commit 7bc7391

Please sign in to comment.