Skip to content

Commit

Permalink
1.6.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeapage committed Feb 8, 2014
1 parent dc80595 commit 9f68ad7
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 1.6.3

2014-02-08

- Fix issue with calling toCSS twice not working in some situations (like with bootstrap 2)

# 1.6.2

2014-02-02
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# [Less.js v1.6.2](http://lesscss.org)
# [Less.js v1.6.3](http://lesscss.org)

> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
Expand Down
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "less",
"version": "1.6.2",
"main": "./dist/less-1.6.2.js",
"version": "1.6.3",
"main": "./dist/less-1.6.3.js",
"ignore": [
"**/.*",
"benchmark",
Expand Down
2 changes: 1 addition & 1 deletion lib/less/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var path = require('path'),
fs = require('fs');

var less = {
version: [1, 6, 2],
version: [1, 6, 3],
Parser: require('./parser').Parser,
tree: require('./tree'),
render: function (input, options, callback) {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "less",
"version": "1.6.2",
"version": "1.6.3",
"description": "Leaner CSS",
"homepage": "http://lesscss.org",
"author": {
Expand Down Expand Up @@ -31,7 +31,7 @@
"test": "./test"
},
"jam": {
"main": "./dist/less-1.5.0.js"
"main": "./dist/less-1.6.3.js"
},
"engines": {
"node": ">=0.4.2"
Expand Down

0 comments on commit 9f68ad7

Please sign in to comment.