Skip to content

Commit dd26960

Browse files
committed
New release
1 parent fe2f3b4 commit dd26960

7 files changed

+10
-10
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mermaid",
3-
"version": "0.2.13",
3+
"version": "0.2.14",
44
"authors": [
55
66
],

dist/mermaid.full.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13001,7 +13001,7 @@ process.chdir = function (dir) {
1300113001
},{}],102:[function(require,module,exports){
1300213002
module.exports={
1300313003
"name": "mermaid",
13004-
"version": "0.2.12",
13004+
"version": "0.2.14",
1300513005
"description": "Markdownish syntax for generating flowcharts",
1300613006
"main": "src/main.js",
1300713007
"scripts": {

dist/mermaid.full.min.js

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

dist/mermaid.slim.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -12969,7 +12969,7 @@ process.chdir = function (dir) {
1296912969
},{}],102:[function(require,module,exports){
1297012970
module.exports={
1297112971
"name": "mermaid",
12972-
"version": "0.2.12",
12972+
"version": "0.2.14",
1297312973
"description": "Markdownish syntax for generating flowcharts",
1297412974
"main": "src/main.js",
1297512975
"scripts": {

dist/mermaid.slim.min.js

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

gulpfile.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -137,14 +137,14 @@ function inc(importance) {
137137
// bump the version number in those files
138138
.pipe(bump({type: importance}))
139139
// save it back to filesystem
140-
.pipe(gulp.dest('./'))
140+
.pipe(gulp.dest('./'));
141141
// commit the changed version number
142-
.pipe(git.commit('bumps package version'))
142+
//.pipe(git.commit('bumps package version'))
143143

144144
// read only one file to get the version number
145-
.pipe(filter('package.json'))
145+
//.pipe(filter('package.json'))
146146
// **tag it in the repository**
147-
.pipe(tag_version());
147+
//.pipe(tag_version());
148148
}
149149

150150
gulp.task('patch', function() { return inc('patch'); })

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mermaid",
3-
"version": "0.2.13",
3+
"version": "0.2.14",
44
"description": "Markdownish syntax for generating flowcharts",
55
"main": "src/main.js",
66
"scripts": {

0 commit comments

Comments
 (0)