Skip to content

Commit 4a5e962

Browse files
authored
Release 0.5.1 (#8)
* Release 0.5.0 * Add configuration file for options and update [email protected]
1 parent 427c1fe commit 4a5e962

File tree

4 files changed

+63
-16
lines changed

4 files changed

+63
-16
lines changed

.grenrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

CHANGELOG.md

Lines changed: 26 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,43 @@
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 [email protected] - _enhancement_
7+
48

5-
- [**enhancement**] Integrate [email protected] [#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+

Gruntfile.js

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,29 @@
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+
1128
module.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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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",
@@ -37,6 +37,6 @@
3737
],
3838
"dependencies": {
3939
"chalk": "^1.1.3",
40-
"github-release-notes": "^0.6.3"
40+
"github-release-notes": "^0.7.2"
4141
}
4242
}

0 commit comments

Comments
 (0)