File tree Expand file tree Collapse file tree 4 files changed +63
-16
lines changed
Expand file tree Collapse file tree 4 files changed +63
-16
lines changed Original file line number Diff line number Diff line change 1+ module . exports = {
2+ "ignoreIssuesWith" : [
3+ "duplicate" ,
4+ "wontfix" ,
5+ "invalid" ,
6+ "help wanted"
7+ ] ,
8+ "template" : {
9+ issue : ( { text, name, url, labels } ) => {
10+ labels = labels . slice ( 0 , - 1 ) ;
11+
12+ return `- [${ text } ](${ url } ) ${ name } - ${ labels } ` ;
13+ } ,
14+ "label" : "_{{label}}_,"
15+ }
16+ }
Original file line number Diff line number Diff line change 11# Changelog
22
3- ## 0.4.0 (27/09/2016)
3+ ## 0.5.0 14/03/2017
4+
5+ - [ #6 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/6 ) Use gren 0.6.3 - _ enhancement_
6+ - [ #3 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/3 ) Integrate github-release-notes@0.5.0 - _ enhancement_
7+
48
5- - [ ** enhancement** ] Integrate github-release-notes@0.5.0 [ #3 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/3 )
6- - ? [ #2 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/2 )
7- - [ ** enhancement** ] Needed option [ #1 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/1 )
89
910 ---
1011
11- ## 0.3.0 (03/03/2016)
12+ ## 0.4.0 27/09/2016
13+
14+ - [ #2 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/2 ) SSH issue - _ closed_
15+ - [ #1 ] ( https://github.com/github-tools/grunt-github-release-notes/issues/1 ) Needed option - _ enhancement_
16+
1217
13- * No changelog for this release.*
1418
1519 ---
1620
17- ## 0.2.1 (19/11/2015)
21+ ## 0.3.0 03/03/2016
1822
1923* No changelog for this release.*
2024
25+
26+
2127 ---
2228
23- ## 0.2.0 ( 19/11/2015)
29+ ## 0.2.1 19/11/2015
2430
2531* No changelog for this release.*
32+
33+
34+
35+ ---
36+
37+ ## 0.2.0 19/11/2015
38+
39+ _ No changelog for this release._
40+
41+
42+ ---
43+
Original file line number Diff line number Diff line change 88
99'use strict' ;
1010
11+ var gren_options = {
12+ ignoreIssuesWith : [
13+ "duplicate" ,
14+ "wontfix" ,
15+ "invalid" ,
16+ "help wanted"
17+ ] ,
18+ template : {
19+ issue : ( { text, name, url, labels } ) => {
20+ labels = labels . slice ( 0 , - 1 ) ;
21+
22+ return `- [${ text } ](${ url } ) ${ name } - ${ labels } ` ;
23+ } ,
24+ label : "_{{label}}_,"
25+ }
26+ }
27+
1128module . exports = function ( grunt ) {
1229 // Project configuration.
1330 grunt . initConfig ( {
1431 gren : {
15- release : {
16- options : {
17- username : 'github-tools' ,
18- repo : 'github-release-notes'
19- }
20- }
32+ release : { } ,
33+ changelog : { }
2134 }
2235 } ) ;
2336
Original file line number Diff line number Diff line change 11{
22 "name" : " grunt-github-release-notes" ,
33 "description" : " Grunt plugin for the npm github-release-notes" ,
4- "version" : " 0.5 .0" ,
4+ "version" : " 0.6 .0" ,
55 "homepage" : " https://github.com/alexcanessa/grunt-github-release-notes" ,
66 "author" : {
77 "name" : " Alex Canessa" ,
3737 ],
3838 "dependencies" : {
3939 "chalk" : " ^1.1.3" ,
40- "github-release-notes" : " ^0.6.3 "
40+ "github-release-notes" : " ^0.7.2 "
4141 }
4242}
You can’t perform that action at this time.
0 commit comments