Skip to content

Commit 06ce7f5

Browse files
committed
create files for 9.2.0
1 parent 684846a commit 06ce7f5

File tree

8 files changed

+15
-16
lines changed

8 files changed

+15
-16
lines changed

Gruntfile.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,14 @@ module.exports = function(grunt) {
5353
},
5454
less: {
5555
all: {
56+
options: {
57+
banner: VERSION_TEMPLATE
58+
},
5659
files: {'distribute/nouislider.css': 'src/nouislider.less'}
5760
}
5861
},
5962
cssmin: {
6063
all: {
61-
options: {
62-
banner: VERSION_TEMPLATE
63-
},
6464
files: {
6565
'distribute/nouislider.min.css': ['distribute/nouislider.css']
6666
}
@@ -132,6 +132,6 @@ module.exports = function(grunt) {
132132

133133
grunt.registerTask('default', ['concat', 'less', 'jshint']);
134134
grunt.registerTask('test', ['concat', 'less', 'jshint', 'qunit']);
135-
grunt.registerTask('create', ['concat', 'less', 'uglify', 'cssmin', 'qunit']);
136-
grunt.registerTask('release', ['jshint', 'compress', 'qunit']);
135+
grunt.registerTask('create', ['concat', 'less', 'uglify', 'cssmin']);
136+
grunt.registerTask('release', ['jshint', 'compress']);
137137
};

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ npm [(package)](https://www.npmjs.com/package/nouislider)
2525
Changelog
2626
---------
2727

28-
### 9.1.1 (*2017-01-17*)
28+
### 9.2.0 (*2017-01-17*)
2929
- Added: Version number to exceptions;
3030
- Added: `noUiSlider.version` holds current version number;
3131
- Added: Throw exception on invalid `pips` configuration (#721);
32+
- Added: Merged pull request that uses less preprocessor to generate CSS (#735);
3233

3334
### 9.1.0 (*2016-12-10*)
3435
- Fixed: Slider not properly handling multitouch (#700, #704);

distribute/nouislider.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
12
/* Functional styling;
23
* These styles are required for noUiSlider to function.
34
* You don't need to change these rules to apply your design.

distribute/nouislider.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! nouislider - 9.1.1 - 2017-01-11 10:01:29 */
1+
/*! nouislider - 9.2.0 - 2017-01-11 10:35:34 */
22

33
(function (factory) {
44

@@ -22,7 +22,7 @@
2222

2323
'use strict';
2424

25-
var VERSION = '9.1.1';
25+
var VERSION = '9.2.0';
2626

2727

2828
// Creates a node, adds it to target, returns the new node.

distribute/nouislider.min.css

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

distribute/nouislider.min.js

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

documentation/download.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<p>noUiSlider is open source, and you can use it <strong>for free</strong> in any personal or commercial product. No attribution required. Both the uncompressed and compressed version of noUiSlider are available in a <code>.zip</code> release, which is hosted by Github and available over <code>https</code>.</p>
1313

14-
<a class="button" href="https://github.com/leongersen/noUiSlider/releases/download/9.1.0/noUiSlider.9.1.0.zip" data-category="convert" data-action="download">Download noUiSlider from Github</a>
14+
<a class="button" href="https://github.com/leongersen/noUiSlider/releases/download/9.2.0/noUiSlider.9.2.0.zip" data-category="convert" data-action="download">Download noUiSlider from Github</a>
1515

1616
<div class="share">
1717
<iframe src="https://ghbtns.com/github-btn.html?user=leongersen&repo=noUiSlider&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nouislider",
3-
"version": "9.1.1",
3+
"version": "9.2.0",
44
"main": "distribute/nouislider",
55
"style": "distribute/nouislider.min.css",
66
"license": "WTFPL",

0 commit comments

Comments
 (0)