github_changelog_generator 1.3.11 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.coveralls.yml +1 -0
- data/.hound.yml +2 -0
- data/.rspec +2 -0
- data/.rubocop.yml +8 -0
- data/.rubocop_todo.yml +81 -0
- data/.travis.yml +12 -10
- data/CHANGELOG.md +145 -113
- data/Gemfile +14 -4
- data/Gemfile.lock +75 -11
- data/README.md +17 -1
- data/Rakefile +5 -7
- data/bin/github_changelog_generator +2 -2
- data/bump_gemfile.rb +42 -48
- data/github_changelog_generator.gemspec +9 -10
- data/lib/CHANGELOG.md +2 -0
- data/lib/github_changelog_generator.rb +194 -346
- data/lib/github_changelog_generator/fetcher.rb +209 -0
- data/lib/github_changelog_generator/generator.rb +11 -8
- data/lib/github_changelog_generator/parser.rb +99 -86
- data/lib/github_changelog_generator/reader.rb +87 -0
- data/lib/github_changelog_generator/version.rb +1 -1
- data/spec/files/angular.js.md +9395 -0
- data/spec/files/bundler.md +1911 -0
- data/spec/files/github-changelog-generator.md +305 -0
- data/spec/spec_helper.rb +117 -0
- data/spec/unit/reader_spec.rb +113 -0
- metadata +22 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7ba2020d366356472460a09dbf5c2cfe9ef2283
|
4
|
+
data.tar.gz: 989e55f94096faff75d82be77fb257e12b866a68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6de4c6204ba73df6e31d3ba7283781bd75dcb791b775762b01f981b102719866b18c59cc01c87724c868100105a6ec7c8fab52f344836b96b99b260be7a2b52b
|
7
|
+
data.tar.gz: 9d2325eaaf086863151fc60843ebe60d7949e5eec856f1e624c72fc4d48c6101171340e641d606d27bef8379c05e9771474fc286393adf970f55bd01e27b7343
|
data/.coveralls.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
service_name: travis-ci
|
data/.hound.yml
ADDED
data/.rspec
ADDED
data/.rubocop.yml
ADDED
data/.rubocop_todo.yml
ADDED
@@ -0,0 +1,81 @@
|
|
1
|
+
# This configuration was generated by `rubocop --auto-gen-config`
|
2
|
+
# on 2015-04-04 02:29:34 +0300 using RuboCop version 0.29.1.
|
3
|
+
# The point is for the user to remove these configuration records
|
4
|
+
# one by one as the offenses are removed from the code base.
|
5
|
+
# Note that changes in the inspected code, or installation of new
|
6
|
+
# versions of RuboCop, may require this file to be generated again.
|
7
|
+
|
8
|
+
# Offense count: 21
|
9
|
+
Metrics/AbcSize:
|
10
|
+
Max: 71
|
11
|
+
|
12
|
+
# Offense count: 2
|
13
|
+
Metrics/BlockNesting:
|
14
|
+
Max: 4
|
15
|
+
|
16
|
+
# Offense count: 2
|
17
|
+
# Configuration parameters: CountComments.
|
18
|
+
Metrics/ClassLength:
|
19
|
+
Max: 457
|
20
|
+
|
21
|
+
# Offense count: 6
|
22
|
+
Metrics/CyclomaticComplexity:
|
23
|
+
Max: 15
|
24
|
+
|
25
|
+
# Offense count: 28
|
26
|
+
# Configuration parameters: CountComments.
|
27
|
+
Metrics/MethodLength:
|
28
|
+
Max: 118
|
29
|
+
|
30
|
+
# Offense count: 5
|
31
|
+
Metrics/PerceivedComplexity:
|
32
|
+
Max: 18
|
33
|
+
|
34
|
+
# Offense count: 3
|
35
|
+
Style/AccessorMethodName:
|
36
|
+
Enabled: false
|
37
|
+
|
38
|
+
# Offense count: 1
|
39
|
+
# Cop supports --auto-correct.
|
40
|
+
# Configuration parameters: EnforcedStyle, SupportedStyles.
|
41
|
+
Style/AndOr:
|
42
|
+
Enabled: false
|
43
|
+
|
44
|
+
# Offense count: 27
|
45
|
+
# Cop supports --auto-correct.
|
46
|
+
Style/Blocks:
|
47
|
+
Enabled: false
|
48
|
+
|
49
|
+
# Offense count: 7
|
50
|
+
# Configuration parameters: IndentWhenRelativeTo, SupportedStyles, IndentOneStep.
|
51
|
+
Style/CaseIndentation:
|
52
|
+
Enabled: false
|
53
|
+
|
54
|
+
# Offense count: 4
|
55
|
+
Style/Documentation:
|
56
|
+
Enabled: false
|
57
|
+
|
58
|
+
# Offense count: 1
|
59
|
+
# Configuration parameters: AllowedVariables.
|
60
|
+
Style/GlobalVars:
|
61
|
+
Enabled: false
|
62
|
+
|
63
|
+
# Offense count: 6
|
64
|
+
# Configuration parameters: MinBodyLength.
|
65
|
+
Style/GuardClause:
|
66
|
+
Enabled: false
|
67
|
+
|
68
|
+
# Offense count: 17
|
69
|
+
# Configuration parameters: MaxLineLength.
|
70
|
+
Style/IfUnlessModifier:
|
71
|
+
Enabled: false
|
72
|
+
|
73
|
+
# Offense count: 2
|
74
|
+
# Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
|
75
|
+
Style/Next:
|
76
|
+
Enabled: false
|
77
|
+
|
78
|
+
# Offense count: 5
|
79
|
+
# Configuration parameters: MaxSlashes.
|
80
|
+
Style/RegexpLiteral:
|
81
|
+
Enabled: false
|
data/.travis.yml
CHANGED
@@ -1,15 +1,17 @@
|
|
1
|
+
sudo: false
|
2
|
+
cache: bundler
|
1
3
|
language: ruby
|
2
|
-
before_install:
|
3
|
-
- gem update --system
|
4
|
-
- gem --version
|
5
4
|
rvm:
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
5
|
+
- 2.1.0
|
6
|
+
script:
|
7
|
+
- bundle exec rake
|
10
8
|
notifications:
|
11
9
|
email:
|
12
10
|
recipients:
|
13
|
-
|
14
|
-
on_success: never
|
15
|
-
on_failure: change
|
11
|
+
- sky4winder+githubchangeloggenerator@gmail.com
|
12
|
+
on_success: never
|
13
|
+
on_failure: change
|
14
|
+
addons:
|
15
|
+
code_climate:
|
16
|
+
repo_token:
|
17
|
+
secure: iMpV5IAvH+/EVGZrpWnt2BnmNFzSbsRcIumsr4ZyLC8N5nrCSXyjCSy0g48btL3Sj0bSgK9hcrJsmrFd2bkqFleyAcPAzNyUQzBuIRZx47O8yFmbZ+Pj+l3+KOlmcbzJNHfDfxkxuWTmTAcSDfsiyApin721T/ey3SUuwKpZNUc=
|
data/CHANGELOG.md
CHANGED
@@ -1,304 +1,336 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [
|
3
|
+
## [Unreleased](https://github.com/skywinder/github-changelog-generator/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/skywinder/
|
5
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.11...HEAD)
|
6
6
|
|
7
|
-
**
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Parsing of existing Change Log file [\#212](https://github.com/skywinder/github-changelog-generator/issues/212)
|
10
|
+
|
11
|
+
- Warn users about 0 tags in repo. [\#208](https://github.com/skywinder/github-changelog-generator/issues/208)
|
12
|
+
|
13
|
+
**Closed issues:**
|
14
|
+
|
15
|
+
- Add CodeClimate and Inch CI [\#219](https://github.com/skywinder/github-changelog-generator/issues/219)
|
16
|
+
|
17
|
+
**Merged pull requests:**
|
18
|
+
|
19
|
+
- Cleanup [\#220](https://github.com/skywinder/github-changelog-generator/pull/220) ([tuexss](https://github.com/tuexss))
|
20
|
+
|
21
|
+
- Add coveralls integration [\#223](https://github.com/skywinder/github-changelog-generator/pull/223) ([skywinder](https://github.com/skywinder))
|
22
|
+
|
23
|
+
- Rspec & rubocop integration [\#217](https://github.com/skywinder/github-changelog-generator/pull/217) ([skywinder](https://github.com/skywinder))
|
24
|
+
|
25
|
+
- Implement Reader class to parse ChangeLog.md [\#216](https://github.com/skywinder/github-changelog-generator/pull/216) ([estahn](https://github.com/estahn))
|
26
|
+
|
27
|
+
- Relatively require github\_changelog\_generator library [\#207](https://github.com/skywinder/github-changelog-generator/pull/207) ([sneal](https://github.com/sneal))
|
28
|
+
|
29
|
+
- Add --max-issues argument to limit requests [\#76](https://github.com/skywinder/github-changelog-generator/pull/76) ([sneal](https://github.com/sneal))
|
30
|
+
|
31
|
+
## [1.3.11](https://github.com/skywinder/github-changelog-generator/tree/1.3.11) (2015-03-21)
|
32
|
+
|
33
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.10...1.3.11)
|
34
|
+
|
35
|
+
**Merged pull requests:**
|
36
|
+
|
37
|
+
- Add fallback with warning message to prevent crash in case of exceed API Rate Limit \(temporary workaround for \#71\) [\#75](https://github.com/skywinder/github-changelog-generator/pull/75) ([skywinder](https://github.com/skywinder))
|
38
|
+
|
39
|
+
## [1.3.10](https://github.com/skywinder/github-changelog-generator/tree/1.3.10) (2015-03-18)
|
8
40
|
|
9
|
-
|
41
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.9...1.3.10)
|
10
42
|
|
11
43
|
**Merged pull requests:**
|
12
44
|
|
13
|
-
- Fix termination in case of empty unreleased section with `--unreleased-only` option. [\#70](https://github.com/skywinder/
|
45
|
+
- Fix termination in case of empty unreleased section with `--unreleased-only` option. [\#70](https://github.com/skywinder/github-changelog-generator/pull/70) ([skywinder](https://github.com/skywinder))
|
14
46
|
|
15
|
-
## [1.3.9](https://github.com/skywinder/
|
47
|
+
## [1.3.9](https://github.com/skywinder/github-changelog-generator/tree/1.3.9) (2015-03-06)
|
16
48
|
|
17
|
-
[Full Changelog](https://github.com/skywinder/
|
49
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.8...1.3.9)
|
18
50
|
|
19
51
|
**Implemented enhancements:**
|
20
52
|
|
21
|
-
- Improve method of detecting owner and repository [\#63](https://github.com/skywinder/
|
53
|
+
- Improve method of detecting owner and repository [\#63](https://github.com/skywinder/github-changelog-generator/issues/63)
|
22
54
|
|
23
55
|
**Merged pull requests:**
|
24
56
|
|
25
|
-
- Resolved concurrency problem in case of issues \> 2048 [\#65](https://github.com/skywinder/
|
57
|
+
- Resolved concurrency problem in case of issues \> 2048 [\#65](https://github.com/skywinder/github-changelog-generator/pull/65) ([skywinder](https://github.com/skywinder))
|
26
58
|
|
27
|
-
## [1.3.8](https://github.com/skywinder/
|
59
|
+
## [1.3.8](https://github.com/skywinder/github-changelog-generator/tree/1.3.8) (2015-03-05)
|
28
60
|
|
29
|
-
[Full Changelog](https://github.com/skywinder/
|
61
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.6...1.3.8)
|
30
62
|
|
31
63
|
**Merged pull requests:**
|
32
64
|
|
33
|
-
- Fix `git remote` parsing in case, when script running without parameters inside destination directory [\#61](https://github.com/skywinder/
|
65
|
+
- Fix `git remote` parsing in case, when script running without parameters inside destination directory [\#61](https://github.com/skywinder/github-changelog-generator/pull/61) ([skywinder](https://github.com/skywinder))
|
34
66
|
|
35
|
-
## [1.3.6](https://github.com/skywinder/
|
67
|
+
## [1.3.6](https://github.com/skywinder/github-changelog-generator/tree/1.3.6) (2015-03-05)
|
36
68
|
|
37
|
-
[Full Changelog](https://github.com/skywinder/
|
69
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.5...1.3.6)
|
38
70
|
|
39
|
-
## [1.3.5](https://github.com/skywinder/
|
71
|
+
## [1.3.5](https://github.com/skywinder/github-changelog-generator/tree/1.3.5) (2015-03-04)
|
40
72
|
|
41
|
-
[Full Changelog](https://github.com/skywinder/
|
73
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.4...1.3.5)
|
42
74
|
|
43
75
|
**Fixed bugs:**
|
44
76
|
|
45
|
-
- Pull Requests in Wrong Tag [\#60](https://github.com/skywinder/
|
77
|
+
- Pull Requests in Wrong Tag [\#60](https://github.com/skywinder/github-changelog-generator/issues/60)
|
46
78
|
|
47
|
-
## [1.3.4](https://github.com/skywinder/
|
79
|
+
## [1.3.4](https://github.com/skywinder/github-changelog-generator/tree/1.3.4) (2015-03-03)
|
48
80
|
|
49
|
-
[Full Changelog](https://github.com/skywinder/
|
81
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.3...1.3.4)
|
50
82
|
|
51
83
|
**Fixed bugs:**
|
52
84
|
|
53
|
-
- --no-issues appears to break PRs [\#59](https://github.com/skywinder/
|
85
|
+
- --no-issues appears to break PRs [\#59](https://github.com/skywinder/github-changelog-generator/issues/59)
|
54
86
|
|
55
|
-
## [1.3.3](https://github.com/skywinder/
|
87
|
+
## [1.3.3](https://github.com/skywinder/github-changelog-generator/tree/1.3.3) (2015-03-03)
|
56
88
|
|
57
|
-
[Full Changelog](https://github.com/skywinder/
|
89
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.2...1.3.3)
|
58
90
|
|
59
91
|
**Closed issues:**
|
60
92
|
|
61
|
-
- Add \# character to encapsulate list. [\#58](https://github.com/skywinder/
|
93
|
+
- Add \# character to encapsulate list. [\#58](https://github.com/skywinder/github-changelog-generator/issues/58)
|
62
94
|
|
63
|
-
## [1.3.2](https://github.com/skywinder/
|
95
|
+
## [1.3.2](https://github.com/skywinder/github-changelog-generator/tree/1.3.2) (2015-03-03)
|
64
96
|
|
65
|
-
[Full Changelog](https://github.com/skywinder/
|
97
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.1...1.3.2)
|
66
98
|
|
67
99
|
**Fixed bugs:**
|
68
100
|
|
69
|
-
- generation failed if github commit api return `404 Not Found` [\#57](https://github.com/skywinder/
|
101
|
+
- generation failed if github commit api return `404 Not Found` [\#57](https://github.com/skywinder/github-changelog-generator/issues/57)
|
70
102
|
|
71
|
-
## [1.3.1](https://github.com/skywinder/
|
103
|
+
## [1.3.1](https://github.com/skywinder/github-changelog-generator/tree/1.3.1) (2015-02-27)
|
72
104
|
|
73
|
-
[Full Changelog](https://github.com/skywinder/
|
105
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.0...1.3.1)
|
74
106
|
|
75
|
-
## [1.3.0](https://github.com/skywinder/
|
107
|
+
## [1.3.0](https://github.com/skywinder/github-changelog-generator/tree/1.3.0) (2015-02-26)
|
76
108
|
|
77
|
-
[Full Changelog](https://github.com/skywinder/
|
109
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.8...1.3.0)
|
78
110
|
|
79
111
|
**Implemented enhancements:**
|
80
112
|
|
81
|
-
- Do not show `Unreleased` section, when it's empty. [\#55](https://github.com/skywinder/
|
113
|
+
- Do not show `Unreleased` section, when it's empty. [\#55](https://github.com/skywinder/github-changelog-generator/issues/55)
|
82
114
|
|
83
|
-
- Separate list exclude and include labels [\#52](https://github.com/skywinder/
|
115
|
+
- Separate list exclude and include labels [\#52](https://github.com/skywinder/github-changelog-generator/issues/52)
|
84
116
|
|
85
|
-
- Unreleased issues in separate section [\#47](https://github.com/skywinder/
|
117
|
+
- Unreleased issues in separate section [\#47](https://github.com/skywinder/github-changelog-generator/issues/47)
|
86
118
|
|
87
|
-
- Separate by lists: Enhancements, Bugs, Pull requests. [\#31](https://github.com/skywinder/
|
119
|
+
- Separate by lists: Enhancements, Bugs, Pull requests. [\#31](https://github.com/skywinder/github-changelog-generator/issues/31)
|
88
120
|
|
89
121
|
**Fixed bugs:**
|
90
122
|
|
91
|
-
-
|
123
|
+
- Pull request with invalid label \(\#26\) in changelog appeared. [\#44](https://github.com/skywinder/github-changelog-generator/issues/44)
|
92
124
|
|
93
125
|
**Merged pull requests:**
|
94
126
|
|
95
|
-
- Implement filtering of Pull Requests by milestones [\#50](https://github.com/skywinder/
|
127
|
+
- Implement filtering of Pull Requests by milestones [\#50](https://github.com/skywinder/github-changelog-generator/pull/50) ([skywinder](https://github.com/skywinder))
|
96
128
|
|
97
|
-
## [1.2.8](https://github.com/skywinder/
|
129
|
+
## [1.2.8](https://github.com/skywinder/github-changelog-generator/tree/1.2.8) (2015-02-17)
|
98
130
|
|
99
|
-
[Full Changelog](https://github.com/skywinder/
|
131
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.7...1.2.8)
|
100
132
|
|
101
133
|
**Closed issues:**
|
102
134
|
|
103
|
-
- Bugs, that closed simultaneously with push not appeared in correct version. [\#37](https://github.com/skywinder/
|
135
|
+
- Bugs, that closed simultaneously with push not appeared in correct version. [\#37](https://github.com/skywinder/github-changelog-generator/issues/37)
|
104
136
|
|
105
137
|
**Merged pull requests:**
|
106
138
|
|
107
|
-
- Feature/fix 37 [\#49](https://github.com/skywinder/
|
139
|
+
- Feature/fix 37 [\#49](https://github.com/skywinder/github-changelog-generator/pull/49) ([skywinder](https://github.com/skywinder))
|
108
140
|
|
109
|
-
- Prettify output [\#48](https://github.com/skywinder/
|
141
|
+
- Prettify output [\#48](https://github.com/skywinder/github-changelog-generator/pull/48) ([skywinder](https://github.com/skywinder))
|
110
142
|
|
111
|
-
## [1.2.7](https://github.com/skywinder/
|
143
|
+
## [1.2.7](https://github.com/skywinder/github-changelog-generator/tree/1.2.7) (2015-01-26)
|
112
144
|
|
113
|
-
[Full Changelog](https://github.com/skywinder/
|
145
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.6...1.2.7)
|
114
146
|
|
115
147
|
**Merged pull requests:**
|
116
148
|
|
117
|
-
- Add compare link between older version and newer version [\#46](https://github.com/skywinder/
|
149
|
+
- Add compare link between older version and newer version [\#46](https://github.com/skywinder/github-changelog-generator/pull/46) ([sue445](https://github.com/sue445))
|
118
150
|
|
119
|
-
## [1.2.6](https://github.com/skywinder/
|
151
|
+
## [1.2.6](https://github.com/skywinder/github-changelog-generator/tree/1.2.6) (2015-01-21)
|
120
152
|
|
121
|
-
[Full Changelog](https://github.com/skywinder/
|
153
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.5...1.2.6)
|
122
154
|
|
123
155
|
**Merged pull requests:**
|
124
156
|
|
125
|
-
- fix link tag format [\#45](https://github.com/skywinder/
|
157
|
+
- fix link tag format [\#45](https://github.com/skywinder/github-changelog-generator/pull/45) ([sugamasao](https://github.com/sugamasao))
|
126
158
|
|
127
|
-
## [1.2.5](https://github.com/skywinder/
|
159
|
+
## [1.2.5](https://github.com/skywinder/github-changelog-generator/tree/1.2.5) (2015-01-15)
|
128
160
|
|
129
|
-
[Full Changelog](https://github.com/skywinder/
|
161
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.4...1.2.5)
|
130
162
|
|
131
163
|
**Implemented enhancements:**
|
132
164
|
|
133
|
-
- Use milestone to specify in which version bug was fixed [\#22](https://github.com/skywinder/
|
165
|
+
- Use milestone to specify in which version bug was fixed [\#22](https://github.com/skywinder/github-changelog-generator/issues/22)
|
134
166
|
|
135
167
|
**Fixed bugs:**
|
136
168
|
|
137
|
-
- Error when trying to generate log for repo without tags [\#32](https://github.com/skywinder/
|
169
|
+
- Error when trying to generate log for repo without tags [\#32](https://github.com/skywinder/github-changelog-generator/issues/32)
|
138
170
|
|
139
171
|
**Merged pull requests:**
|
140
172
|
|
141
|
-
- PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/skywinder/
|
173
|
+
- PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/skywinder/github-changelog-generator/pull/43) ([schwing](https://github.com/schwing))
|
142
174
|
|
143
|
-
- support enterprise github via command line options [\#42](https://github.com/skywinder/
|
175
|
+
- support enterprise github via command line options [\#42](https://github.com/skywinder/github-changelog-generator/pull/42) ([glenlovett](https://github.com/glenlovett))
|
144
176
|
|
145
|
-
## [1.2.4](https://github.com/skywinder/
|
177
|
+
## [1.2.4](https://github.com/skywinder/github-changelog-generator/tree/1.2.4) (2014-12-16)
|
146
178
|
|
147
|
-
[Full Changelog](https://github.com/skywinder/
|
179
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.3...1.2.4)
|
148
180
|
|
149
181
|
**Fixed bugs:**
|
150
182
|
|
151
|
-
- Sometimes user is NULL during merges [\#41](https://github.com/skywinder/
|
183
|
+
- Sometimes user is NULL during merges [\#41](https://github.com/skywinder/github-changelog-generator/issues/41)
|
152
184
|
|
153
|
-
- Crash when try generate log for rails [\#35](https://github.com/skywinder/
|
185
|
+
- Crash when try generate log for rails [\#35](https://github.com/skywinder/github-changelog-generator/issues/35)
|
154
186
|
|
155
|
-
## [1.2.3](https://github.com/skywinder/
|
187
|
+
## [1.2.3](https://github.com/skywinder/github-changelog-generator/tree/1.2.3) (2014-12-16)
|
156
188
|
|
157
|
-
[Full Changelog](https://github.com/skywinder/
|
189
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.2...1.2.3)
|
158
190
|
|
159
191
|
**Implemented enhancements:**
|
160
192
|
|
161
|
-
- Add ability to run with one parameter instead -u -p [\#38](https://github.com/skywinder/
|
193
|
+
- Add ability to run with one parameter instead -u -p [\#38](https://github.com/skywinder/github-changelog-generator/issues/38)
|
162
194
|
|
163
|
-
- Detailed output [\#33](https://github.com/skywinder/
|
195
|
+
- Detailed output [\#33](https://github.com/skywinder/github-changelog-generator/issues/33)
|
164
196
|
|
165
197
|
**Fixed bugs:**
|
166
198
|
|
167
|
-
- Docs lacking or basic behavior not as advertised [\#30](https://github.com/skywinder/
|
199
|
+
- Docs lacking or basic behavior not as advertised [\#30](https://github.com/skywinder/github-changelog-generator/issues/30)
|
168
200
|
|
169
201
|
**Merged pull requests:**
|
170
202
|
|
171
|
-
- Implement async fetching [\#39](https://github.com/skywinder/
|
203
|
+
- Implement async fetching [\#39](https://github.com/skywinder/github-changelog-generator/pull/39) ([skywinder](https://github.com/skywinder))
|
172
204
|
|
173
|
-
- Fix crash when user is NULL [\#40](https://github.com/skywinder/
|
205
|
+
- Fix crash when user is NULL [\#40](https://github.com/skywinder/github-changelog-generator/pull/40) ([skywinder](https://github.com/skywinder))
|
174
206
|
|
175
|
-
## [1.2.2](https://github.com/skywinder/
|
207
|
+
## [1.2.2](https://github.com/skywinder/github-changelog-generator/tree/1.2.2) (2014-12-10)
|
176
208
|
|
177
|
-
[Full Changelog](https://github.com/skywinder/
|
209
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.1...1.2.2)
|
178
210
|
|
179
211
|
**Fixed bugs:**
|
180
212
|
|
181
|
-
- Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/skywinder/
|
213
|
+
- Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/skywinder/github-changelog-generator/issues/34)
|
182
214
|
|
183
215
|
**Merged pull requests:**
|
184
216
|
|
185
|
-
- Add a Bitdeli Badge to README [\#36](https://github.com/skywinder/
|
217
|
+
- Add a Bitdeli Badge to README [\#36](https://github.com/skywinder/github-changelog-generator/pull/36) ([bitdeli-chef](https://github.com/bitdeli-chef))
|
186
218
|
|
187
|
-
## [1.2.1](https://github.com/skywinder/
|
219
|
+
## [1.2.1](https://github.com/skywinder/github-changelog-generator/tree/1.2.1) (2014-11-22)
|
188
220
|
|
189
|
-
[Full Changelog](https://github.com/skywinder/
|
221
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.0...1.2.1)
|
190
222
|
|
191
223
|
**Fixed bugs:**
|
192
224
|
|
193
|
-
- Script fills changelog only for first 30 tags. [\#20](https://github.com/skywinder/
|
225
|
+
- Script fills changelog only for first 30 tags. [\#20](https://github.com/skywinder/github-changelog-generator/issues/20)
|
194
226
|
|
195
227
|
**Merged pull requests:**
|
196
228
|
|
197
|
-
- Issues for last tag not in list [\#29](https://github.com/skywinder/
|
229
|
+
- Issues for last tag not in list [\#29](https://github.com/skywinder/github-changelog-generator/pull/29) ([skywinder](https://github.com/skywinder))
|
198
230
|
|
199
|
-
- Disable default --filter-pull-requests option. [\#28](https://github.com/skywinder/
|
231
|
+
- Disable default --filter-pull-requests option. [\#28](https://github.com/skywinder/github-changelog-generator/pull/28) ([skywinder](https://github.com/skywinder))
|
200
232
|
|
201
|
-
## [1.2.0](https://github.com/skywinder/
|
233
|
+
## [1.2.0](https://github.com/skywinder/github-changelog-generator/tree/1.2.0) (2014-11-19)
|
202
234
|
|
203
|
-
[Full Changelog](https://github.com/skywinder/
|
235
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.4...1.2.0)
|
204
236
|
|
205
237
|
**Merged pull requests:**
|
206
238
|
|
207
|
-
- Add filter for pull-requests labels. \(option --filter-pull-requests\) [\#27](https://github.com/skywinder/
|
239
|
+
- Add filter for pull-requests labels. \(option --filter-pull-requests\) [\#27](https://github.com/skywinder/github-changelog-generator/pull/27) ([skywinder](https://github.com/skywinder))
|
208
240
|
|
209
|
-
- Add ability to insert authors of pull-requests \(--\[no-\]author option\) [\#25](https://github.com/skywinder/
|
241
|
+
- Add ability to insert authors of pull-requests \(--\[no-\]author option\) [\#25](https://github.com/skywinder/github-changelog-generator/pull/25) ([skywinder](https://github.com/skywinder))
|
210
242
|
|
211
|
-
- Don't receive issues in case of --no-isses flag specied [\#24](https://github.com/skywinder/
|
243
|
+
- Don't receive issues in case of --no-isses flag specied [\#24](https://github.com/skywinder/github-changelog-generator/pull/24) ([skywinder](https://github.com/skywinder))
|
212
244
|
|
213
|
-
## [1.1.4](https://github.com/skywinder/
|
245
|
+
## [1.1.4](https://github.com/skywinder/github-changelog-generator/tree/1.1.4) (2014-11-18)
|
214
246
|
|
215
|
-
[Full Changelog](https://github.com/skywinder/
|
247
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.2...1.1.4)
|
216
248
|
|
217
249
|
**Implemented enhancements:**
|
218
250
|
|
219
|
-
- Implement ability to retrieve GitHub token from ENV variable \(to not put it to script directly\) [\#19](https://github.com/skywinder/
|
251
|
+
- Implement ability to retrieve GitHub token from ENV variable \(to not put it to script directly\) [\#19](https://github.com/skywinder/github-changelog-generator/issues/19)
|
220
252
|
|
221
253
|
**Merged pull requests:**
|
222
254
|
|
223
|
-
- Sort tags by date [\#23](https://github.com/skywinder/
|
255
|
+
- Sort tags by date [\#23](https://github.com/skywinder/github-changelog-generator/pull/23) ([skywinder](https://github.com/skywinder))
|
224
256
|
|
225
|
-
## [1.1.2](https://github.com/skywinder/
|
257
|
+
## [1.1.2](https://github.com/skywinder/github-changelog-generator/tree/1.1.2) (2014-11-12)
|
226
258
|
|
227
|
-
[Full Changelog](https://github.com/skywinder/
|
259
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.1...1.1.2)
|
228
260
|
|
229
261
|
**Merged pull requests:**
|
230
262
|
|
231
|
-
- Fix bug with dot signs in project name [\#18](https://github.com/skywinder/
|
263
|
+
- Fix bug with dot signs in project name [\#18](https://github.com/skywinder/github-changelog-generator/pull/18) ([skywinder](https://github.com/skywinder))
|
232
264
|
|
233
|
-
- Fix bug with dot signs in user name [\#17](https://github.com/skywinder/
|
265
|
+
- Fix bug with dot signs in user name [\#17](https://github.com/skywinder/github-changelog-generator/pull/17) ([skywinder](https://github.com/skywinder))
|
234
266
|
|
235
|
-
## [1.1.1](https://github.com/skywinder/
|
267
|
+
## [1.1.1](https://github.com/skywinder/github-changelog-generator/tree/1.1.1) (2014-11-10)
|
236
268
|
|
237
|
-
[Full Changelog](https://github.com/skywinder/
|
269
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.0...1.1.1)
|
238
270
|
|
239
271
|
**Merged pull requests:**
|
240
272
|
|
241
|
-
- Remove duplicates of issues and pull-requests with same number [\#15](https://github.com/skywinder/
|
273
|
+
- Remove duplicates of issues and pull-requests with same number [\#15](https://github.com/skywinder/github-changelog-generator/pull/15) ([skywinder](https://github.com/skywinder))
|
242
274
|
|
243
|
-
- Sort issues by tags [\#14](https://github.com/skywinder/
|
275
|
+
- Sort issues by tags [\#14](https://github.com/skywinder/github-changelog-generator/pull/14) ([skywinder](https://github.com/skywinder))
|
244
276
|
|
245
|
-
- Add ability to add or exclude issues without any labels [\#13](https://github.com/skywinder/
|
277
|
+
- Add ability to add or exclude issues without any labels [\#13](https://github.com/skywinder/github-changelog-generator/pull/13) ([skywinder](https://github.com/skywinder))
|
246
278
|
|
247
|
-
## [1.1.0](https://github.com/skywinder/
|
279
|
+
## [1.1.0](https://github.com/skywinder/github-changelog-generator/tree/1.1.0) (2014-11-10)
|
248
280
|
|
249
|
-
[Full Changelog](https://github.com/skywinder/
|
281
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.0.1...1.1.0)
|
250
282
|
|
251
283
|
**Implemented enhancements:**
|
252
284
|
|
253
|
-
- Detect username and project form origin [\#11](https://github.com/skywinder/
|
285
|
+
- Detect username and project form origin [\#11](https://github.com/skywinder/github-changelog-generator/issues/11)
|
254
286
|
|
255
287
|
**Fixed bugs:**
|
256
288
|
|
257
|
-
- Bug with wrong credentials in 1.0.1 [\#12](https://github.com/skywinder/
|
289
|
+
- Bug with wrong credentials in 1.0.1 [\#12](https://github.com/skywinder/github-changelog-generator/issues/12)
|
258
290
|
|
259
|
-
- Markdown formating in the last line wrong [\#9](https://github.com/skywinder/
|
291
|
+
- Markdown formating in the last line wrong [\#9](https://github.com/skywinder/github-changelog-generator/issues/9)
|
260
292
|
|
261
|
-
## [1.0.1](https://github.com/skywinder/
|
293
|
+
## [1.0.1](https://github.com/skywinder/github-changelog-generator/tree/1.0.1) (2014-11-10)
|
262
294
|
|
263
|
-
[Full Changelog](https://github.com/skywinder/
|
295
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.0.0...1.0.1)
|
264
296
|
|
265
|
-
## [1.0.0](https://github.com/skywinder/
|
297
|
+
## [1.0.0](https://github.com/skywinder/github-changelog-generator/tree/1.0.0) (2014-11-07)
|
266
298
|
|
267
|
-
[Full Changelog](https://github.com/skywinder/
|
299
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/0.1.0...1.0.0)
|
268
300
|
|
269
301
|
**Implemented enhancements:**
|
270
302
|
|
271
|
-
- Add support for fixed issues and implemented enchanments. [\#6](https://github.com/skywinder/
|
303
|
+
- Add support for fixed issues and implemented enchanments. [\#6](https://github.com/skywinder/github-changelog-generator/issues/6)
|
272
304
|
|
273
|
-
- Implement option to specify output filename [\#4](https://github.com/skywinder/
|
305
|
+
- Implement option to specify output filename [\#4](https://github.com/skywinder/github-changelog-generator/issues/4)
|
274
306
|
|
275
307
|
**Fixed bugs:**
|
276
308
|
|
277
|
-
- Last tag not appeared in changelog [\#5](https://github.com/skywinder/
|
309
|
+
- Last tag not appeared in changelog [\#5](https://github.com/skywinder/github-changelog-generator/issues/5)
|
278
310
|
|
279
311
|
**Merged pull requests:**
|
280
312
|
|
281
|
-
- Implement support of different tags. [\#8](https://github.com/skywinder/
|
313
|
+
- Implement support of different tags. [\#8](https://github.com/skywinder/github-changelog-generator/pull/8) ([skywinder](https://github.com/skywinder))
|
282
314
|
|
283
|
-
- Add support for issues in CHANGELOG [\#7](https://github.com/skywinder/
|
315
|
+
- Add support for issues in CHANGELOG [\#7](https://github.com/skywinder/github-changelog-generator/pull/7) ([skywinder](https://github.com/skywinder))
|
284
316
|
|
285
|
-
## [0.1.0](https://github.com/skywinder/
|
317
|
+
## [0.1.0](https://github.com/skywinder/github-changelog-generator/tree/0.1.0) (2014-11-07)
|
286
318
|
|
287
|
-
[Full Changelog](https://github.com/skywinder/
|
319
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/0.0.2...0.1.0)
|
288
320
|
|
289
321
|
**Merged pull requests:**
|
290
322
|
|
291
|
-
- Fix parsing date of pull request [\#3](https://github.com/skywinder/
|
323
|
+
- Fix parsing date of pull request [\#3](https://github.com/skywinder/github-changelog-generator/pull/3) ([skywinder](https://github.com/skywinder))
|
292
324
|
|
293
|
-
- Add changelog generation for last tag [\#2](https://github.com/skywinder/
|
325
|
+
- Add changelog generation for last tag [\#2](https://github.com/skywinder/github-changelog-generator/pull/2) ([skywinder](https://github.com/skywinder))
|
294
326
|
|
295
|
-
- Add option \(-o --output\) to specify name of the output file. [\#1](https://github.com/skywinder/
|
327
|
+
- Add option \(-o --output\) to specify name of the output file. [\#1](https://github.com/skywinder/github-changelog-generator/pull/1) ([skywinder](https://github.com/skywinder))
|
296
328
|
|
297
|
-
## [0.0.2](https://github.com/skywinder/
|
329
|
+
## [0.0.2](https://github.com/skywinder/github-changelog-generator/tree/0.0.2) (2014-11-06)
|
298
330
|
|
299
|
-
[Full Changelog](https://github.com/skywinder/
|
331
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/0.0.1...0.0.2)
|
300
332
|
|
301
|
-
## [0.0.1](https://github.com/skywinder/
|
333
|
+
## [0.0.1](https://github.com/skywinder/github-changelog-generator/tree/0.0.1) (2014-11-06)
|
302
334
|
|
303
335
|
|
304
336
|
|