Skip to content

Commit 7ad4329

Browse files
committed
1.7.2 release
1 parent 04cb8bd commit 7ad4329

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 1.7.2
2+
3+
2014-06-19
4+
5+
- Allow paths option to be a string (in 1.7.1 less started throwing an exception instead of incorrectly processing the string as an array of chars)
6+
- Do not round numbers when used with javascript (introduced 1.7.0)
7+
18
# 1.7.1
29

310
2014-06-08
@@ -153,7 +160,7 @@
153160
- fix passing of strict maths option
154161

155162
# 1.4.0 Beta 4
156-
163+
157164
2013-05-04
158165

159166
- change strictMaths to strictMath. Enable this with --strict-math=on in lessc and strictMath:true in JavaScript.
@@ -186,7 +193,7 @@
186193
- significant bug fixes to our debug options
187194
- other parameters can be used as defaults in mixins e.g. .a(@a, @b:@a)
188195
- an error is shown if properties are used outside of a ruleset
189-
- added extract function which picks a value out of a list, e.g. extract(12 13 14, 3) => 14
196+
- added extract function which picks a value out of a list, e.g. extract(12 13 14, 3) => 14
190197
- added luma, hsvhue, hsvsaturation, hsvvalue functions
191198
- added pow, pi, mod, tan, sin, cos, atan, asin, acos and sqrt math functions
192199
- added convert function, e.g. convert(1rad, deg) => value in degrees

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://travis-ci.org/less/less.js.png?branch=master)](https://travis-ci.org/less/less.js)
22
[![Dependencies](https://david-dm.org/less/less.js.png)](https://david-dm.org/less/less.js) [![devDependency Status](https://david-dm.org/less/less.js/dev-status.png)](https://david-dm.org/less/less.js#info=devDependencies) [![optionalDependency Status](https://david-dm.org/less/less.js/optional-status.png)](https://david-dm.org/less/less.js#info=optionalDependencies)
33

4-
# [Less.js v1.7.1](http://lesscss.org)
4+
# [Less.js v1.7.2](http://lesscss.org)
55

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

lib/less/index.js

Lines changed: 1 addition & 1 deletion
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, 7, 1],
7+
version: [1, 7, 2],
88
Parser: require('./parser').Parser,
99
tree: require('./tree'),
1010
render: function (input, options, callback) {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "less",
3-
"version": "1.7.1",
3+
"version": "1.7.2",
44
"description": "Leaner CSS",
55
"homepage": "http://lesscss.org",
66
"author": {

0 commit comments

Comments
 (0)