Skip to content

Commit e7bf859

Browse files
committed
v0.1.1 release prep
1 parent 6e7c408 commit e7bf859

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Chart.Annotation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* Chart.Annotation.js
33
* http://chartjs.org/
4-
* Version: 0.1.0
4+
* Version: 0.1.1
55
*
66
* Copyright 2016 Evert Timberg
77
* Released under the MIT license

Chart.Annotation.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.

gulpfile.js

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function buildTask() {
5454
/*
5555
* Usage : gulp bump
5656
* Prompts: Version increment to bump
57-
* Output: - New version number written into package.json & bower.json
57+
* Output: - New version number written into package.json
5858
*/
5959
function bumpTask(complete) {
6060
util.log('Current version:', util.colors.cyan(package.version));
@@ -70,14 +70,12 @@ function bumpTask(complete) {
7070
var increment = res.version.split(' ')[0],
7171
newVersion = semver.inc(package.version, increment);
7272

73-
// Set the new versions into the bower/package object
73+
// Set the new versions into the package object
7474
package.version = newVersion;
75-
bower.version = newVersion;
7675

7776
// Write these to their own files, then build the output
7877
fs.writeFileSync('package.json', JSON.stringify(package, null, 2));
79-
fs.writeFileSync('bower.json', JSON.stringify(bower, null, 2));
80-
78+
8179
complete();
8280
});
8381
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Chart.Annotation.js",
33
"description": "Annotations for Chart.js",
4-
"version": "0.1.0",
4+
"version": "0.1.1",
55
"license": "MIT",
66
"main": "src/chart.annotation.js",
77
"repository": {

0 commit comments

Comments
 (0)