Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .grenrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
module.exports = {
"ignoreIssuesWith": [
"duplicate",
"wontfix",
"invalid",
"help wanted"
],
"template": {
issue: ({ text, name, url, labels }) => {
labels = labels.slice(0, -1);

return `- [${text}](${url}) ${name} - ${labels}`;
},
"label": "_{{label}}_,"
}
}
34 changes: 26 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,43 @@
# Changelog

## 0.4.0 (27/09/2016)
## 0.5.0 14/03/2017

- [#6](https://github.com/github-tools/grunt-github-release-notes/issues/6) Use gren 0.6.3 - _enhancement_
- [#3](https://github.com/github-tools/grunt-github-release-notes/issues/3) Integrate github-release-notes@0.5.0 - _enhancement_


- [**enhancement**] Integrate github-release-notes@0.5.0 [#3](https://github.com/github-tools/grunt-github-release-notes/issues/3)
- ? [#2](https://github.com/github-tools/grunt-github-release-notes/issues/2)
- [**enhancement**] Needed option [#1](https://github.com/github-tools/grunt-github-release-notes/issues/1)

---

## 0.3.0 (03/03/2016)
## 0.4.0 27/09/2016

- [#2](https://github.com/github-tools/grunt-github-release-notes/issues/2) SSH issue - _closed_
- [#1](https://github.com/github-tools/grunt-github-release-notes/issues/1) Needed option - _enhancement_


*No changelog for this release.*

---

## 0.2.1 (19/11/2015)
## 0.3.0 03/03/2016

*No changelog for this release.*



---

## 0.2.0 (19/11/2015)
## 0.2.1 19/11/2015

*No changelog for this release.*



---

## 0.2.0 19/11/2015

_No changelog for this release._


---

25 changes: 19 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,29 @@

'use strict';

var gren_options = {
ignoreIssuesWith: [
"duplicate",
"wontfix",
"invalid",
"help wanted"
],
template: {
issue: ({ text, name, url, labels }) => {
labels = labels.slice(0, -1);

return `- [${text}](${url}) ${name} - ${labels}`;
},
label: "_{{label}}_,"
}
}

module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
gren: {
release: {
options: {
username: 'github-tools',
repo: 'github-release-notes'
}
}
release: {},
changelog: {}
}
});

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "grunt-github-release-notes",
"description": "Grunt plugin for the npm github-release-notes",
"version": "0.4.0",
"version": "0.6.0",
"homepage": "https://github.com/alexcanessa/grunt-github-release-notes",
"author": {
"name": "Alex Canessa",
Expand Down Expand Up @@ -37,6 +37,6 @@
],
"dependencies": {
"chalk": "^1.1.3",
"github-release-notes": "^0.6.3"
"github-release-notes": "^0.7.2"
}
}