Skip to content

Commit

Permalink
6.4.3 release
Browse files Browse the repository at this point in the history
Close #604
  • Loading branch information
ValentinH committed Dec 1, 2017
1 parent 087a4ad commit 6f5b995
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 6.4.3 (2017-12-01)
## Bug fix
- Remove the semicolon at the end of the `dist/rzslider.css` file. It was introduced by previous release.

# 6.4.2 (2017-11-30)
## Bug fix
- Add a semicolon at the end of the `dist/rzslider.js` file. It avoids errors when people concat this file with other libs without using the minified version.
Expand Down
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,13 @@ module.exports = function(grunt) {
options: {
stripBanners: true,
banner: banner,
footer: ';', // to prevent error when people concat the file and don't use the min version
},
js: {
src: ['dist/rzslider.js'],
dest: 'dist/rzslider.js',
options: {
footer: ';', // to prevent error when people concat the file and don't use the min version
},
},
css: {
src: ['dist/rzslider.css'],
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularjs-slider",
"version": "6.4.2",
"version": "6.4.3",
"homepage": "https://github.com/angular-slider/angularjs-slider",
"authors": [
"Rafal Zajac <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions dist/rzslider.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/rzslider.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*! angularjs-slider - v6.4.1 -
/*! angularjs-slider - v6.4.2 -
(c) Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]> -
https://github.com/angular-slider/angularjs-slider -
2017-11-30 */
2017-12-01 */
/*jslint unparam: true */
/*global angular: false, console: false, define, module */
;(function(root, factory) {
Expand Down
2 changes: 1 addition & 1 deletion dist/rzslider.min.css

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

2 changes: 1 addition & 1 deletion dist/rzslider.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/rzslider.scss

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angularjs-slider",
"version": "6.4.2",
"version": "6.4.3",
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
"main": "dist/rzslider.js",
"types": "dist/rzslider.d.ts",
Expand Down

0 comments on commit 6f5b995

Please sign in to comment.