Skip to content

Commit 8296cac

Browse files
committed
version bump to v0.3.0
2 parents 900997f + ea7b653 commit 8296cac

File tree

9 files changed

+8261
-7805
lines changed

9 files changed

+8261
-7805
lines changed

Readme.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ Sass.listFiles();
7373

7474
### Working With Files
7575

76-
Chances are you want to use one of the readily available Sass mixins (e.g. [drublic/sass-mixins](https://github.com/drublic/Sass-Mixins) or [Burbon](https://github.com/thoughtbot/bourbon)). While Sass.js doesn't feature a full-blown "loadBurbon()", registering files is possible:
76+
Chances are you want to use one of the readily available Sass mixins (e.g. [drublic/sass-mixins](https://github.com/drublic/Sass-Mixins) or [Bourbon](https://github.com/thoughtbot/bourbon)). While Sass.js doesn't feature a full-blown "loadBurbon()", registering files is possible:
7777

7878
```js
7979
Sass.writeFile('one.scss', '.one { width: 123px; }');
@@ -95,6 +95,10 @@ outputs
9595

9696
## Changelog
9797

98+
### 0.3.0 (April 5th 2014) ###
99+
100+
* upgrading to [libsass @1122ead...](https://github.com/hcatlin/libsass/commit/1122ead208a8d1c438daaca70041ef6dd2361fa0) (to be on par with [node-sass](https://github.com/andrew/node-sass) [v.0.8.3](https://github.com/andrew/node-sass/releases/tag/v0.8.3))
101+
98102
### 0.2.0 (January 16th 2014) ###
99103

100104
* using libsass at v1.0.1 (instead of building from master)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass.js",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"main": [
55
"./dist/sass.min.js",
66
"./dist/sass.worker.js"

dist/sass.js

Lines changed: 34 additions & 29 deletions
Large diffs are not rendered by default.

dist/sass.min.js

Lines changed: 4092 additions & 3871 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/sass.worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! sass.js - v0.2.0 - web worker - 2014-01-16 */(function (root, factory) {
1+
/*! sass.js - v0.3.0 - web worker - 2014-04-05 */(function (root, factory) {
22
'use strict';
33
if (typeof define === 'function' && define.amd) {
44
// AMD. Register as an anonymous module.

dist/worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! sass.js - v0.2.0 - web worker - 2014-01-16 */'use strict';
1+
/*! sass.js - v0.3.0 - web worker - 2014-04-05 */'use strict';
22
/*global Sass, postMessage, onmessage:true, importScripts*/
33
importScripts('sass.min.js');
44

dist/worker.min.js

Lines changed: 4093 additions & 3872 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sass.js",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"title": "Sass.js - API for emscripted libsass",
55
"description": "Sass.js is a convenience API for the JavaScript libsass (compiled with Emscripten)",
66
"homepage": "http://medialize.github.com/sass.js/",

src/libsass.js

Lines changed: 33 additions & 28 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)