Skip to content

Commit 9f68ad7

Browse files
committed
1.6.3 release
1 parent dc80595 commit 9f68ad7

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 1.6.3
2+
3+
2014-02-08
4+
5+
- Fix issue with calling toCSS twice not working in some situations (like with bootstrap 2)
6+
17
# 1.6.2
28

39
2014-02-02

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# [Less.js v1.6.2](http://lesscss.org)
1+
# [Less.js v1.6.3](http://lesscss.org)
22

33
> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
44

bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "less",
3-
"version": "1.6.2",
4-
"main": "./dist/less-1.6.2.js",
3+
"version": "1.6.3",
4+
"main": "./dist/less-1.6.3.js",
55
"ignore": [
66
"**/.*",
77
"benchmark",

lib/less/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var path = require('path'),
44
fs = require('fs');
55

66
var less = {
7-
version: [1, 6, 2],
7+
version: [1, 6, 3],
88
Parser: require('./parser').Parser,
99
tree: require('./tree'),
1010
render: function (input, options, callback) {

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "less",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"description": "Leaner CSS",
55
"homepage": "http://lesscss.org",
66
"author": {
@@ -31,7 +31,7 @@
3131
"test": "./test"
3232
},
3333
"jam": {
34-
"main": "./dist/less-1.5.0.js"
34+
"main": "./dist/less-1.6.3.js"
3535
},
3636
"engines": {
3737
"node": ">=0.4.2"

0 commit comments

Comments
 (0)