[Pkg-javascript-commits] [less.js] 08/09: 1.7.2 release
Jonas Smedegaard
dr at jones.dk
Mon Oct 26 23:22:45 UTC 2015
This is an automated email from the git hooks/post-receive script.
js pushed a commit to annotated tag v1.7.2
in repository less.js.
commit 7ad43291f5896110e34284e3f47261ac4335e414
Author: Luke Page <luke.a.page at gmail.com>
Date: Thu Jun 19 06:20:20 2014 +0100
1.7.2 release
---
CHANGELOG.md | 11 +++++++++--
README.md | 2 +-
lib/less/index.js | 2 +-
package.json | 2 +-
4 files changed, 12 insertions(+), 5 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index afadae2..ec91c22 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# 1.7.2
+
+2014-06-19
+
+ - 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)
+ - Do not round numbers when used with javascript (introduced 1.7.0)
+
# 1.7.1
2014-06-08
@@ -153,7 +160,7 @@
- fix passing of strict maths option
# 1.4.0 Beta 4
-
+
2013-05-04
- change strictMaths to strictMath. Enable this with --strict-math=on in lessc and strictMath:true in JavaScript.
@@ -186,7 +193,7 @@
- significant bug fixes to our debug options
- other parameters can be used as defaults in mixins e.g. .a(@a, @b:@a)
- an error is shown if properties are used outside of a ruleset
- - added extract function which picks a value out of a list, e.g. extract(12 13 14, 3) => 14
+ - added extract function which picks a value out of a list, e.g. extract(12 13 14, 3) => 14
- added luma, hsvhue, hsvsaturation, hsvvalue functions
- added pow, pi, mod, tan, sin, cos, atan, asin, acos and sqrt math functions
- added convert function, e.g. convert(1rad, deg) => value in degrees
diff --git a/README.md b/README.md
index aaf0621..463033b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
[![Build Status](https://travis-ci.org/less/less.js.png?branch=master)](https://travis-ci.org/less/less.js)
[![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)
-# [Less.js v1.7.1](http://lesscss.org)
+# [Less.js v1.7.2](http://lesscss.org)
> The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org).
diff --git a/lib/less/index.js b/lib/less/index.js
index 78e7213..cb648d3 100644
--- a/lib/less/index.js
+++ b/lib/less/index.js
@@ -4,7 +4,7 @@ var path = require('path'),
fs = require('./fs');
var less = {
- version: [1, 7, 1],
+ version: [1, 7, 2],
Parser: require('./parser').Parser,
tree: require('./tree'),
render: function (input, options, callback) {
diff --git a/package.json b/package.json
index b6f3821..565031a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "less",
- "version": "1.7.1",
+ "version": "1.7.2",
"description": "Leaner CSS",
"homepage": "http://lesscss.org",
"author": {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/less.js.git
More information about the Pkg-javascript-commits
mailing list