Skip to content

Commit dfd09ef

Browse files
committed
lib 1.3 #feature
1 parent 6ad17c4 commit dfd09ef

File tree

5 files changed

+70
-12
lines changed

5 files changed

+70
-12
lines changed

CHANGELOG.md

+27-2
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,43 @@
1-
# Git Changelog changelog
1+
# Git Changelog Maven plugin changelog
22

3-
Changelog of Git Changelog.
3+
Changelog of Git Changelog Maven plugin.
44

55
## Next release
6+
### Features
7+
8+
[ed7ed42aea0abad](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/ed7ed42aea0abad) Tomas Bjerre *2015-11-18 19:47:42*
9+
10+
lib 1.3
11+
12+
13+
### Other changes
14+
15+
[6ad17c4c9b98311](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/6ad17c4c9b98311) Tomas Bjerre *2015-11-17 20:20:05*
16+
17+
doc
18+
19+
20+
## git-changelog-maven-plugin-1.1
621
### Other changes
722

23+
[6f86aae88b6818a](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/6f86aae88b6818a) Tomas Bjerre *2015-11-17 20:15:39*
24+
825
MediaWiki support, using lib 1.2
926

27+
[5d07983484af033](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/5d07983484af033) Tomas Bjerre *2015-11-15 14:44:03*
28+
1029
doc
1130

31+
1232
## git-changelog-maven-plugin-1.0
1333
### Other changes
1434

35+
[ee8f7c1e1027713](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/ee8f7c1e1027713) Tomas Bjerre *2015-11-15 14:36:57*
36+
1537
doc
1638

39+
[044b3a76a1ab650](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/044b3a76a1ab650) Tomas Bjerre *2015-11-15 14:30:51*
40+
1741
Initial
1842

43+
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,43 @@
1-
# Git Changelog changelog
1+
# Git Changelog Maven plugin changelog
22

3-
Changelog of Git Changelog.
3+
Changelog of Git Changelog Maven plugin.
44

55
## Next release
6+
### Features
7+
8+
[ed7ed42aea0abad](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/ed7ed42aea0abad) Tomas Bjerre *2015-11-18 19:47:42*
9+
10+
lib 1.3
11+
12+
13+
### Other changes
14+
15+
[6ad17c4c9b98311](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/6ad17c4c9b98311) Tomas Bjerre *2015-11-17 20:20:05*
16+
17+
doc
18+
19+
20+
## git-changelog-maven-plugin-1.1
621
### Other changes
722

23+
[6f86aae88b6818a](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/6f86aae88b6818a) Tomas Bjerre *2015-11-17 20:15:39*
24+
825
MediaWiki support, using lib 1.2
926

27+
[5d07983484af033](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/5d07983484af033) Tomas Bjerre *2015-11-15 14:44:03*
28+
1029
doc
1130

31+
1232
## git-changelog-maven-plugin-1.0
1333
### Other changes
1434

35+
[ee8f7c1e1027713](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/ee8f7c1e1027713) Tomas Bjerre *2015-11-15 14:36:57*
36+
1537
doc
1638

39+
[044b3a76a1ab650](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/044b3a76a1ab650) Tomas Bjerre *2015-11-15 14:30:51*
40+
1741
Initial
1842

43+

git-changelog-maven-plugin-example/changelog.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
"noIssueName": "Other changes",
1111
"timeZone": "UTC",
1212
"removeIssueFromMessage": "true",
13-
13+
14+
"jiraServer": "https://jiraserver/jira",
1415
"jiraIssuePattern": "\\b[a-zA-Z]([a-zA-Z]+)-([0-9]+)\\b",
1516

16-
"githubIssuePattern": "#[0-9]*",
17-
1817
"customIssues": [
18+
{"name": "Github", "pattern": "#([0-9]+)", "link": "https://github.com/tomasbjerre/git-changelog-lib/issues/${PATTERN_GROUP_1}" },
1919
{ "name": "Bugs", "pattern": "#bug" },
2020
{ "name": "Features", "pattern": "#feature" }
2121
]
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1-
# Git Changelog changelog
1+
# Git Changelog Maven plugin changelog
22

3-
Changelog of Git Changelog.
3+
Changelog of Git Changelog Maven plugin.
44

55
{{#tags}}
66
## {{name}}
77
{{#issues}}
8+
{{#hasLink}}
9+
### {{name}} [{{issue}}]({{link}})
10+
{{/hasLink}}
11+
{{^hasLink}}
812
### {{name}}
13+
{{/hasLink}}
14+
15+
{{#commits}}
16+
[{{hash}}](https://github.com/tomasbjerre/git-changelog-maven-plugin/commit/{{hash}}) {{authorName}} *{{commitTime}}*
917

10-
{{#commits}}
1118
{{{message}}}
1219

13-
{{/commits}}
20+
{{/commits}}
21+
1422
{{/issues}}
1523
{{/tags}}

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
<dependency>
7070
<groupId>se.bjurr.gitchangelog</groupId>
7171
<artifactId>git-changelog-lib</artifactId>
72-
<version>1.2</version>
72+
<version>1.3</version>
7373
</dependency>
7474
</dependencies>
7575

0 commit comments

Comments
 (0)