Skip to content

Commit 04d65a9

Browse files
committed
bumpedd version number and copyright date
1 parent 4cfea5c commit 04d65a9

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2017 Matt Boldt
3+
Copyright (c) 2018 Matt Boldt
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typed.js",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"homepage": "https://github.com/mattboldt/typed.js",
55
"authors": [
66
"Matt Boldt <me@mattboldt.com>"

gulpfile.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,25 +47,25 @@ gulp.task('html-docs', () => {
4747
return gulp.src('./src/*.js')
4848
.pipe(gulpDocumentation('html'), {}, {
4949
name: 'Typed.js Docs',
50-
version: '2.0.6'
50+
version: '2.0.7'
5151
})
5252
.pipe(gulp.dest('docs'));
5353
});
5454

5555
gulp.task('server', function () {
56-
// Start the server at the beginning of the task
56+
// Start the server at the beginning of the task
5757
server.run(['app.js']);
58-
// Restart the server when file changes
58+
// Restart the server when file changes
5959
gulp.watch(['docs/**/*.html'], server.notify);
6060
gulp.watch(['docs/styles/**/*.scss'], ['styles:scss']);
61-
//gulp.watch(['{.tmp,app}/styles/**/*.css'], ['styles:css', server.notify]);
62-
//Event object won't pass down to gulp.watch's callback if there's more than one of them.
63-
//So the correct way to use server.notify is as following:
61+
//gulp.watch(['{.tmp,app}/styles/**/*.css'], ['styles:css', server.notify]);
62+
//Event object won't pass down to gulp.watch's callback if there's more than one of them.
63+
//So the correct way to use server.notify is as following:
6464
gulp.watch(['{.tmp,docs}/styles/**/*.css'], function(event){
6565
gulp.run('styles:css');
6666
server.notify(event);
67-
//pipe support is added for server.notify since v0.1.5,
68-
//see https://github.com/gimm/gulp-express#servernotifyevent
67+
//pipe support is added for server.notify since v0.1.5,
68+
//see https://github.com/gimm/gulp-express#servernotifyevent
6969
});
7070

7171
gulp.watch(['docs/scripts/**/*.js'], ['jshint']);

lib/typed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* typed.js - A JavaScript Typing Animation Library
44
* Author: Matt Boldt <me@mattboldt.com>
5-
* Version: v2.0.6
5+
* Version: v2.0.7
66
* Url: https://github.com/mattboldt/typed.js
77
* License(s): MIT
88
*

lib/typed.min.js

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

lib/typed.min.js.map

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typed.js",
3-
"version": "2.0.6",
3+
"version": "2.0.7",
44
"homepage": "https://github.com/mattboldt/typed.js",
55
"repository": "https://github.com/mattboldt/typed.js",
66
"license": "MIT",

0 commit comments

Comments
 (0)