Skip to content

Commit c950c1d

Browse files
committed
Merge branch 'release/v0.5.5'
2 parents 4165833 + fc7a0e5 commit c950c1d

6 files changed

+13
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v0.5.5
4+
5+
- Fix `sw-stage` destroy issue ([#6](https://github.com/pc035860/angular-scroll-watch/issues/6))
6+
37
## v0.5.4
48

59
- Update bower main path ([#3](https://github.com/pc035860/angular-scroll-watch/pull/3))

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-scroll-watch",
3-
"version": "0.5.4",
3+
"version": "0.5.5",
44
"description": "Basic scroll-aware directives for AngularJS.",
55
"main": "build/angular-scroll-watch.js",
66
"ignore": [

build/angular-scroll-watch.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/*! anguar-scroll-watch
2+
version: 0.5.5
3+
build date: 2015-7-25
4+
author: Chih-Hsuan Fan
5+
https://github.com/pc035860/angular-scroll-watch.git */
16
(function (module) {
27

38
var DIR_STYLE = 'swStyle',

build/angular-scroll-watch.min.js

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

gulpfile.js

+1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ var config = {
3838
gulp.task('build', ['lint'], function () {
3939
return gulp.src(config.src)
4040
.pipe(annotate())
41+
.pipe(header(config.banner, {pkg: pkg, today: getTodayStr()}))
4142
.pipe(gulp.dest(config.buildDir))
4243
.pipe(uglify())
4344
.pipe(rename({extname: '.min.js'}))

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "anguar-scroll-watch",
3-
"version": "0.5.4",
3+
"version": "0.5.5",
44
"description": "Basic scroll-aware directives for AngularJS.",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)