Skip to content

Commit 6f5b995

Browse files
committed
6.4.3 release
Close #604
1 parent 087a4ad commit 6f5b995

9 files changed

+21
-15
lines changed

Diff for: CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 6.4.3 (2017-12-01)
2+
## Bug fix
3+
- Remove the semicolon at the end of the `dist/rzslider.css` file. It was introduced by previous release.
4+
15
# 6.4.2 (2017-11-30)
26
## Bug fix
37
- 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.

Diff for: Gruntfile.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,13 @@ module.exports = function(grunt) {
9595
options: {
9696
stripBanners: true,
9797
banner: banner,
98-
footer: ';', // to prevent error when people concat the file and don't use the min version
9998
},
10099
js: {
101100
src: ['dist/rzslider.js'],
102101
dest: 'dist/rzslider.js',
102+
options: {
103+
footer: ';', // to prevent error when people concat the file and don't use the min version
104+
},
103105
},
104106
css: {
105107
src: ['dist/rzslider.css'],

Diff for: bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-slider",
3-
"version": "6.4.2",
3+
"version": "6.4.3",
44
"homepage": "https://github.com/angular-slider/angularjs-slider",
55
"authors": [
66
"Rafal Zajac <[email protected]>",

Diff for: dist/rzslider.css

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/rzslider.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*! angularjs-slider - v6.4.1 -
1+
/*! angularjs-slider - v6.4.2 -
22
(c) Rafal Zajac <[email protected]>, Valentin Hervieu <[email protected]>, Jussi Saarivirta <[email protected]>, Angelin Sirbu <[email protected]> -
33
https://github.com/angular-slider/angularjs-slider -
4-
2017-11-30 */
4+
2017-12-01 */
55
/*jslint unparam: true */
66
/*global angular: false, console: false, define, module */
77
;(function(root, factory) {

Diff for: dist/rzslider.min.css

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/rzslider.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/rzslider.scss

+4-4
Large diffs are not rendered by default.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angularjs-slider",
3-
"version": "6.4.2",
3+
"version": "6.4.3",
44
"description": "AngularJS slider directive with no external dependencies. Mobile friendly!.",
55
"main": "dist/rzslider.js",
66
"types": "dist/rzslider.d.ts",

0 commit comments

Comments
 (0)