Skip to content

Commit

Permalink
create files for 9.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
leongersen committed Jan 11, 2017
1 parent 684846a commit 06ce7f5
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,14 @@ module.exports = function(grunt) {
},
less: {
all: {
options: {
banner: VERSION_TEMPLATE
},
files: {'distribute/nouislider.css': 'src/nouislider.less'}
}
},
cssmin: {
all: {
options: {
banner: VERSION_TEMPLATE
},
files: {
'distribute/nouislider.min.css': ['distribute/nouislider.css']
}
Expand Down Expand Up @@ -132,6 +132,6 @@ module.exports = function(grunt) {

grunt.registerTask('default', ['concat', 'less', 'jshint']);
grunt.registerTask('test', ['concat', 'less', 'jshint', 'qunit']);
grunt.registerTask('create', ['concat', 'less', 'uglify', 'cssmin', 'qunit']);
grunt.registerTask('release', ['jshint', 'compress', 'qunit']);
grunt.registerTask('create', ['concat', 'less', 'uglify', 'cssmin']);
grunt.registerTask('release', ['jshint', 'compress']);
};
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ npm [(package)](https://www.npmjs.com/package/nouislider)
Changelog
---------

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

### 9.1.0 (*2016-12-10*)
- Fixed: Slider not properly handling multitouch (#700, #704);
Expand Down
1 change: 1 addition & 0 deletions distribute/nouislider.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
/* Functional styling;
* These styles are required for noUiSlider to function.
* You don't need to change these rules to apply your design.
Expand Down
4 changes: 2 additions & 2 deletions distribute/nouislider.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! nouislider - 9.1.1 - 2017-01-11 10:01:29 */
/*! nouislider - 9.2.0 - 2017-01-11 10:35:34 */

(function (factory) {

Expand All @@ -22,7 +22,7 @@

'use strict';

var VERSION = '9.1.1';
var VERSION = '9.2.0';


// Creates a node, adds it to target, returns the new node.
Expand Down
5 changes: 1 addition & 4 deletions distribute/nouislider.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions distribute/nouislider.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion documentation/download.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<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>

<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>
<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>

<div class="share">
<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>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nouislider",
"version": "9.1.1",
"version": "9.2.0",
"main": "distribute/nouislider",
"style": "distribute/nouislider.min.css",
"license": "WTFPL",
Expand Down

0 comments on commit 06ce7f5

Please sign in to comment.