github_changelog_generator 1.15.0.pre.rc → 1.16.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +5 -5
  2. data/LICENSE +1 -1
  3. data/README.md +134 -81
  4. data/Rakefile +1 -1
  5. data/bin/git-generate-changelog +1 -1
  6. data/lib/github_changelog_generator.rb +10 -6
  7. data/lib/github_changelog_generator/argv_parser.rb +224 -0
  8. data/lib/github_changelog_generator/generator/entry.rb +218 -0
  9. data/lib/github_changelog_generator/generator/generator.rb +120 -121
  10. data/lib/github_changelog_generator/generator/generator_fetcher.rb +138 -23
  11. data/lib/github_changelog_generator/generator/generator_processor.rb +60 -27
  12. data/lib/github_changelog_generator/generator/generator_tags.rb +25 -21
  13. data/lib/github_changelog_generator/generator/section.rb +124 -0
  14. data/lib/github_changelog_generator/helper.rb +1 -1
  15. data/lib/github_changelog_generator/octo_fetcher.rb +250 -96
  16. data/lib/github_changelog_generator/options.rb +39 -4
  17. data/lib/github_changelog_generator/parser.rb +70 -209
  18. data/lib/github_changelog_generator/parser_file.rb +35 -16
  19. data/lib/github_changelog_generator/reader.rb +2 -2
  20. data/lib/github_changelog_generator/ssl_certs/cacert.pem +851 -1680
  21. data/lib/github_changelog_generator/task.rb +4 -4
  22. data/lib/github_changelog_generator/version.rb +1 -1
  23. data/man/git-generate-changelog.1 +160 -74
  24. data/man/git-generate-changelog.1.html +159 -95
  25. data/man/git-generate-changelog.html +36 -24
  26. data/man/git-generate-changelog.md +156 -93
  27. data/spec/files/config_example +5 -0
  28. data/spec/files/github-changelog-generator.md +114 -114
  29. data/spec/{install-gem-in-bundler.gemfile → install_gem_in_bundler.gemfile} +2 -0
  30. data/spec/spec_helper.rb +2 -6
  31. data/spec/unit/generator/entry_spec.rb +766 -0
  32. data/spec/unit/generator/generator_processor_spec.rb +103 -41
  33. data/spec/unit/generator/generator_spec.rb +47 -0
  34. data/spec/unit/generator/generator_tags_spec.rb +51 -24
  35. data/spec/unit/generator/section_spec.rb +34 -0
  36. data/spec/unit/octo_fetcher_spec.rb +247 -197
  37. data/spec/unit/options_spec.rb +24 -0
  38. data/spec/unit/parse_file_spec.rb +2 -2
  39. data/spec/unit/parser_spec.rb +50 -0
  40. data/spec/unit/reader_spec.rb +4 -4
  41. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits/when_API_is_valid/returns_commits.json +1 -0
  42. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits_before/when_API_is_valid/returns_commits.json +1 -1
  43. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.json +1 -1
  44. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issue_with_proper_key/values.json +1 -1
  45. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues.json +1 -1
  46. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues_with_labels.json +1 -1
  47. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_request_with_proper_key/values.json +1 -1
  48. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_requests_with_labels.json +1 -1
  49. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid.json +1 -1
  50. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_correct_pull_request_keys.json +1 -1
  51. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_pull_requests.json +1 -1
  52. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid.json +1 -1
  53. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid/returns_commit.json +1 -1
  54. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid.json +1 -1
  55. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid/returns_date.json +1 -1
  56. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid.json +1 -1
  57. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid/populates_issues.json +1 -1
  58. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid.json +1 -1
  59. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags.json +1 -1
  60. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags_count.json +1 -1
  61. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided.json +1 -1
  62. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided/should_raise_Unauthorized_error.json +1 -1
  63. metadata +56 -20
  64. data/bin/ghclgen +0 -5
  65. data/lib/github_changelog_generator/generator/generator_generation.rb +0 -181
  66. data/spec/unit/generator/generator_generation_spec.rb +0 -73
@@ -1,4 +1,4 @@
1
- git-generate-changelog(1) - Generate changelog from github
1
+ git-generate-changelog(1) - Generate changelog from GitHub
2
2
  ================================
3
3
 
4
4
  ## SYNOPSIS
@@ -7,194 +7,257 @@ git-generate-changelog(1) - Generate changelog from github
7
7
 
8
8
  ## DESCRIPTION
9
9
 
10
- Automatically generate change log from your tags, issues, labels and pull requests on GitHub.
10
+ Automatically generate changelog from your tags, issues, labels and pull requests on GitHub.
11
11
 
12
12
  ## OPTIONS
13
13
 
14
- -u, --user [USER]
14
+ -u, --user USER
15
15
 
16
- Username of the owner of target GitHub repo
16
+ Username of the owner of target GitHub repo.
17
17
 
18
- -p, --project [PROJECT]
18
+ -p, --project PROJECT
19
19
 
20
- Name of project on GitHub
20
+ Name of project on GitHub.
21
21
 
22
- -t, --token [TOKEN]
22
+ -t, --token TOKEN
23
23
 
24
24
  To make more than 50 requests per hour your GitHub token is required. You can generate it at: https://github.com/settings/tokens/new
25
25
 
26
- -f, --date-format [FORMAT]
26
+ -f, --date-format FORMAT
27
27
 
28
- Date format. Default is %Y-%m-%d
28
+ Date format. Default is %Y-%m-%d.
29
29
 
30
- -o, --output [NAME]
30
+ -o, --output NAME
31
31
 
32
- Output file. Default is CHANGELOG.md
32
+ Output file. To print to STDOUT instead, use blank as path. Default is CHANGELOG.md.
33
33
 
34
- -b, --base [NAME]
34
+ -b, --base NAME
35
35
 
36
- Optional base file to append generated changes to.
36
+ Optional base file to append generated changes to. Default is HISTORY.md.
37
37
 
38
- --bugs-label [LABEL]
38
+ --summary-label LABEL
39
39
 
40
- Setup custom label for bug-fixes section. Default is "**Fixed bugs:**
40
+ Set up custom label for the release summary section. Default is "".
41
41
 
42
- --enhancement-label [LABEL]
42
+ --breaking-label LABEL
43
43
 
44
- Setup custom label for enhancements section. Default is "**Implemented enhancements:**"
44
+ Set up custom label for breaking changes section. Default is "**Breaking changes:**".
45
45
 
46
- --issues-label [LABEL]
46
+ --enhancement-label LABEL
47
47
 
48
- Setup custom label for closed-issues section. Default is "**Closed issues:**"
48
+ Set up custom label for enhancements section. Default is "**Implemented enhancements:**".
49
49
 
50
- --header-label [LABEL]
50
+ --bugs-label LABEL
51
51
 
52
- Setup custom header label. Default is "# Change Log"
52
+ Set up custom label for bug-fixes section. Default is "**Fixed bugs:**".
53
53
 
54
- --front-matter [JSON]
54
+ --deprecated-label LABEL
55
55
 
56
- Add YAML front matter. Formatted as JSON because it's easier to add on the command line
56
+ Set up custom label for deprecated section. Default is "**Deprecated:**".
57
57
 
58
- --pr-label [LABEL]
58
+ --removed-label LABEL
59
59
 
60
- Setup custom label for pull requests section. Default is "**Merged pull requests:**"
60
+ Set up custom label for removed section. Default is "**Removed:**".
61
61
 
62
- --[no-]issues
62
+ --security-label LABEL
63
63
 
64
- Include closed issues in changelog. Default is true
64
+ Set up custom label for security section. Default is "**Security:**".
65
65
 
66
- --[no-]issues-wo-labels
66
+ --issues-label LABEL
67
67
 
68
- Include closed issues without labels in changelog. Default is true
68
+ Set up custom label for closed-issues section. Default is "**Closed issues:**".
69
69
 
70
- --[no-]pr-wo-labels
70
+ --header-label LABEL
71
71
 
72
- Include pull requests without labels in changelog. Default is true
72
+ Set up custom header label. Default is "# Changelog".
73
73
 
74
- --[no-]pull-requests
74
+ --configure-sections HASH, STRING
75
75
 
76
- Include pull-requests in changelog. Default is true
76
+ Define your own set of sections which overrides all default sections.
77
77
 
78
- --[no-]filter-by-milestone
78
+ --add-sections HASH, STRING
79
79
 
80
- Use milestone to detect when issue was resolved. Default is true
80
+ Add new sections but keep the default sections.
81
81
 
82
- --[no-]author
82
+ --front-matter JSON
83
83
 
84
- Add author of pull-request in the end. Default is true
84
+ Add YAML front matter. Formatted as JSON because it's easier to add on the command line.
85
85
 
86
- --usernames-as-github-logins
86
+ --pr-label LABEL
87
87
 
88
- Use GitHub tags instead of Markdown links for the author of an issue or pull-request.
88
+ Set up custom label for pull requests section. Default is "**Merged pull requests:**".
89
89
 
90
- --unreleased-only
90
+ --[no-]issues
91
91
 
92
- Generate log from unreleased closed issues only.
92
+ Include closed issues in changelog. Default is true.
93
93
 
94
- --[no-]unreleased
94
+ --[no-]issues-wo-labels
95
95
 
96
- Add to log unreleased closed issues. Default is true
96
+ Include closed issues without labels in changelog. Default is true.
97
97
 
98
- --unreleased-label [label]
98
+ --[no-]pr-wo-labels
99
99
 
100
- Setup custom label for unreleased closed issues section. Default is "**Unreleased:**"
100
+ Include pull requests without labels in changelog. Default is true.
101
101
 
102
- --[no-]compare-link
102
+ --[no-]pull-requests
103
103
 
104
- Include compare link (Full Changelog) between older version and newer version. Default is true
104
+ Include pull-requests in changelog. Default is true.
105
105
 
106
- --include-labels x,y,z
106
+ --[no-]filter-by-milestone
107
107
 
108
- Only issues with the specified labels will be included in the changelog.
108
+ Use milestone to detect when issue was resolved. Default is true.
109
109
 
110
- --exclude-labels x,y,z
110
+ --[no-]issues-of-open-milestones
111
111
 
112
- Issues with the specified labels will be always excluded from changelog. Default is 'duplicate,question,invalid,wontfix'
112
+ Include issues of open milestones. Default is true.
113
113
 
114
- --bug-labels x,y,z
114
+ --[no-]author
115
115
 
116
- Issues with the specified labels will be always added to "Fixed bugs" section. Default is 'bug,Bug'
116
+ Add author of pull request at the end. Default is true.
117
117
 
118
- --enhancement-labels x,y,z
118
+ --usernames-as-github-logins
119
119
 
120
- Issues with the specified labels will be always added to "Implemented enhancements" section. Default is 'enhancement,Enhancement'
120
+ Use GitHub tags instead of Markdown links for the author of an issue or pull-request.
121
121
 
122
- --exclude-tags x,y,z
122
+ --unreleased-only
123
123
 
124
- Change log will exclude specified tags
124
+ Generate log from unreleased closed issues only.
125
125
 
126
- --exclude-tags-regex [REGEX]
126
+ --[no-]unreleased
127
127
 
128
- Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*\+\d{1,}"
128
+ Add to log unreleased closed issues. Default is true.
129
129
 
130
- --since-tag x
130
+ --unreleased-label LABEL
131
131
 
132
- Change log will start after specified tag
132
+ Set up custom label for unreleased closed issues section. Default is "**Unreleased:**".
133
133
 
134
- --due-tag x
134
+ --[no-]compare-link
135
135
 
136
- Change log will end before specified tag
136
+ Include compare link (Full Changelog) between older version and newer version. Default is true.
137
137
 
138
- --max-issues [NUMBER]
138
+ --include-labels x,y,z
139
139
 
140
- Max number of issues to fetch from GitHub. Default is unlimited
140
+ Of the labeled issues, only include the ones with the specified labels.
141
141
 
142
- --release-url [URL]
142
+ --exclude-labels x,y,z
143
143
 
144
- The URL to point to for release links, in printf format (with the tag as variable).
144
+ Issues with the specified labels will be excluded from changelog. Default is 'duplicate,question,invalid,wontfix'.
145
145
 
146
- --github-site [URL]
146
+ --summary-labels x,y,z
147
147
 
148
- The Enterprise Github site on which your project is hosted.
148
+ Issues with these labels will be added to a new section, called "Release Summary". The section display only body of issues. Default is 'Release summary,release-summary,Summary,summary'.
149
149
 
150
- --github-api [URL]
150
+ --breaking-labels x,y,z
151
151
 
152
- The enterprise endpoint to use for your Github API.
152
+ Issues with these labels will be added to a new section, called "Breaking changes". Default is 'backwards-incompatible,breaking'.
153
153
 
154
- --simple-list
154
+ --enhancement-labels x,y,z
155
155
 
156
- Create simple list from issues and pull requests. Default is false.
156
+ Issues with the specified labels will be added to "Implemented enhancements" section. Default is 'enhancement,Enhancement'.
157
157
 
158
- --future-release [RELEASE-VERSION]
158
+ --bug-labels x,y,z
159
159
 
160
- Put the unreleased changes in the specified release number.
160
+ Issues with the specified labels will be added to "Fixed bugs" section. Default is 'bug,Bug'.
161
161
 
162
- --release-branch [RELEASE-BRANCH]
162
+ --deprecated-labels x,y,z
163
163
 
164
- Limit pull requests to the release branch, such as master or release
164
+ Issues with the specified labels will be added to a section called "Deprecated". Default is 'deprecated,Deprecated'.
165
165
 
166
- --http-cache
166
+ --removed-labels x,y,z
167
167
 
168
- Use HTTP Cache to cache Github API requests (useful for large repos) Default is true.
168
+ Issues with the specified labels will be added to a section called "Removed". Default is 'removed,Removed'.
169
169
 
170
- --[no-]cache-file [CACHE-FILE]
170
+ --security-labels x,y,z
171
171
 
172
- Filename to use for cache. Default is github-changelog-http-cache in a temporary directory.
172
+ Issues with the specified labels will be added to a section called "Security fixes". Default is 'security,Security'.
173
173
 
174
- --cache-log [CACHE-LOG]
174
+ --issue-line-labels x,y,z
175
175
 
176
- Filename to use for cache log. Default is github-changelog-logger.log in a temporary directory.
176
+ The specified labels will be shown in brackets next to each matching issue. Use "ALL" to show all labels. Default is [].
177
177
 
178
- --ssl-ca-file [PATH]
178
+ --exclude-tags x,y,z
179
179
 
180
- Path to cacert.pem file. Default is a bundled lib/github_changelog_generator/ssl_certs/cacert.pem. Respects SSL_CA_PATH.
180
+ Changelog will exclude specified tags.
181
181
 
182
- --require file1.rb,file2.rb
182
+ --exclude-tags-regex REGEX
183
183
 
184
- Paths to Ruby file(s) to require before generating changelog.
184
+ Apply a regular expression on tag names so that they can be excluded, for example: --exclude-tags-regex ".*\+\d{1,}".
185
185
 
186
- --[no-]verbose
186
+ --since-tag x
187
187
 
188
- Run verbosely. Default is true
188
+ Changelog will start after specified tag.
189
+
190
+ --due-tag x
191
+
192
+ Changelog will end before specified tag.
193
+
194
+ --since-commit x
195
+
196
+ Fetch only commits after this time. eg. "2017-01-01 10:00:00"
197
+
198
+ --max-issues NUMBER
199
+
200
+ Maximum number of issues to fetch from GitHub. Default is unlimited.
201
+
202
+ --release-url URL
203
+
204
+ The URL to point to for release links, in printf format (with the tag as variable).
205
+
206
+ --github-site URL
207
+
208
+ The Enterprise GitHub site where your project is hosted.
209
+
210
+ --github-api URL
211
+
212
+ The enterprise endpoint to use for your GitHub API.
213
+
214
+ --simple-list
215
+
216
+ Create a simple list from issues and pull requests. Default is false.
217
+
218
+ --future-release RELEASE-VERSION
219
+
220
+ Put the unreleased changes in the specified release number.
221
+
222
+ --release-branch RELEASE-BRANCH
223
+
224
+ Limit pull requests to the release branch, such as master or release.
225
+
226
+ --http-cache
227
+
228
+ Use HTTP Cache to cache GitHub API requests (useful for large repos). Default is true.
229
+
230
+ --[no-]cache-file CACHE-FILE
231
+
232
+ Filename to use for cache. Default is github-changelog-http-cache in a temporary directory.
233
+
234
+ --cache-log CACHE-LOG
235
+
236
+ Filename to use for cache log. Default is github-changelog-logger.log in a temporary directory.
237
+
238
+ --ssl-ca-file PATH
239
+
240
+ Path to cacert.pem file. Default is a bundled lib/github_changelog_generator/ssl_certs/cacert.pem. Respects SSL_CA_PATH.
241
+
242
+ --require file1.rb,file2.rb
243
+
244
+ Paths to Ruby file(s) to require before generating changelog.
245
+
246
+ --[no-]verbose
247
+
248
+ Run verbosely. Default is true.
189
249
 
190
250
  -v, --version
191
251
 
192
- Print version number
252
+ Print version number.
193
253
 
194
254
  -h, --help
195
255
 
196
- Displays Help
256
+ Displays Help.
257
+
258
+ ## REBASED COMMITS
197
259
 
260
+ GitHub pull requests that have been merged whose merge commit SHA has been modified through rebasing, cherry picking, or some other method may be tracked via a special comment on GitHub. Git commit SHAs found in comments on pull requests matching the regular expression `/rebased commit: ([0-9a-f]{40})/i` will be used in place of the original merge SHA when being added to the changelog.
198
261
 
199
262
  ## EXAMPLES
200
263
 
@@ -204,8 +267,8 @@ Written by Petr Korolev sky4winder@gmail.com
204
267
 
205
268
  ## REPORTING BUGS
206
269
 
207
- &lt;<https://github.com/skywinder/github-changelog-generator/issues>&gt;
270
+ &lt;<https://github.com/github-changelog-generator/github-changelog-generator/issues>&gt;
208
271
 
209
272
  ## SEE ALSO
210
273
 
211
- &lt;<https://github.com/skywinder/github-changelog-generator/>&gt;
274
+ &lt;<https://github.com/github-changelog-generator/github-changelog-generator/>&gt;
@@ -0,0 +1,5 @@
1
+ user=spec_user
2
+ project=spec_project
3
+ unreleased=false
4
+ future-release=5.0.0
5
+ since-tag=1.0.0
@@ -1,305 +1,305 @@
1
- # Change Log
1
+ # Changelog
2
2
 
3
- ## [1.3.10](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.10) (2015-03-18)
3
+ ## [1.3.10](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.10) (2015-03-18)
4
4
 
5
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.9...1.3.10)
5
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.9...1.3.10)
6
6
 
7
7
  **Fixed bugs:**
8
8
 
9
- - Exclude closed PR's from changelog. [\#69](https://github.com/skywinder/Github-Changelog-Generator/issues/69)
9
+ - Exclude closed PR's from changelog. [\#69](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/69)
10
10
 
11
11
  **Merged pull requests:**
12
12
 
13
- - 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))
13
+ - Fix termination in case of empty unreleased section with `--unreleased-only` option. [\#70](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/70) ([github-changelog-generator](https://github.com/github-changelog-generator))
14
14
 
15
- ## [1.3.9](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.9) (2015-03-06)
15
+ ## [1.3.9](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.9) (2015-03-06)
16
16
 
17
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.8...1.3.9)
17
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.8...1.3.9)
18
18
 
19
19
  **Implemented enhancements:**
20
20
 
21
- - Improve method of detecting owner and repository [\#63](https://github.com/skywinder/Github-Changelog-Generator/issues/63)
21
+ - Improve method of detecting owner and repository [\#63](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/63)
22
22
 
23
23
  **Merged pull requests:**
24
24
 
25
- - Resolved concurrency problem in case of issues \> 2048 [\#65](https://github.com/skywinder/Github-Changelog-Generator/pull/65) ([skywinder](https://github.com/skywinder))
25
+ - Resolved concurrency problem in case of issues \> 2048 [\#65](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/65) ([github-changelog-generator](https://github.com/github-changelog-generator))
26
26
 
27
- ## [1.3.8](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.8) (2015-03-05)
27
+ ## [1.3.8](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.8) (2015-03-05)
28
28
 
29
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.6...1.3.8)
29
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.6...1.3.8)
30
30
 
31
31
  **Merged pull requests:**
32
32
 
33
- - 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))
33
+ - Fix `git remote` parsing in case, when script running without parameters inside destination directory [\#61](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/61) ([github-changelog-generator](https://github.com/github-changelog-generator))
34
34
 
35
- ## [1.3.6](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.6) (2015-03-05)
35
+ ## [1.3.6](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.6) (2015-03-05)
36
36
 
37
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.5...1.3.6)
37
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.5...1.3.6)
38
38
 
39
- ## [1.3.5](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.5) (2015-03-04)
39
+ ## [1.3.5](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.5) (2015-03-04)
40
40
 
41
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.4...1.3.5)
41
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.4...1.3.5)
42
42
 
43
43
  **Fixed bugs:**
44
44
 
45
- - Pull Requests in Wrong Tag [\#60](https://github.com/skywinder/Github-Changelog-Generator/issues/60)
45
+ - Pull Requests in Wrong Tag [\#60](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/60)
46
46
 
47
- ## [1.3.4](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.4) (2015-03-03)
47
+ ## [1.3.4](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.4) (2015-03-03)
48
48
 
49
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.3...1.3.4)
49
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.3...1.3.4)
50
50
 
51
51
  **Fixed bugs:**
52
52
 
53
- - --no-issues appears to break PRs [\#59](https://github.com/skywinder/Github-Changelog-Generator/issues/59)
53
+ - --no-issues appears to break PRs [\#59](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/59)
54
54
 
55
- ## [1.3.3](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.3) (2015-03-03)
55
+ ## [1.3.3](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.3) (2015-03-03)
56
56
 
57
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.2...1.3.3)
57
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.2...1.3.3)
58
58
 
59
59
  **Closed issues:**
60
60
 
61
- - Add \# character to encapsulate list. [\#58](https://github.com/skywinder/Github-Changelog-Generator/issues/58)
61
+ - Add \# character to encapsulate list. [\#58](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/58)
62
62
 
63
- ## [1.3.2](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.2) (2015-03-03)
63
+ ## [1.3.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.2) (2015-03-03)
64
64
 
65
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.1...1.3.2)
65
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.1...1.3.2)
66
66
 
67
67
  **Fixed bugs:**
68
68
 
69
- - generation failed if github commit api return `404 Not Found` [\#57](https://github.com/skywinder/Github-Changelog-Generator/issues/57)
69
+ - generation failed if github commit api return `404 Not Found` [\#57](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/57)
70
70
 
71
- ## [1.3.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.1) (2015-02-27)
71
+ ## [1.3.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.1) (2015-02-27)
72
72
 
73
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.3.0...1.3.1)
73
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.3.0...1.3.1)
74
74
 
75
- ## [1.3.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.3.0) (2015-02-26)
75
+ ## [1.3.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.3.0) (2015-02-26)
76
76
 
77
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.8...1.3.0)
77
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.8...1.3.0)
78
78
 
79
79
  **Implemented enhancements:**
80
80
 
81
- - Do not show `Unreleased` section, when it's empty. [\#55](https://github.com/skywinder/Github-Changelog-Generator/issues/55)
81
+ - Do not show `Unreleased` section, when it's empty. [\#55](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/55)
82
82
 
83
- - Separate list exclude and include labels [\#52](https://github.com/skywinder/Github-Changelog-Generator/issues/52)
83
+ - Separate list exclude and include labels [\#52](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/52)
84
84
 
85
- - Unreleased issues in separate section [\#47](https://github.com/skywinder/Github-Changelog-Generator/issues/47)
85
+ - Unreleased issues in separate section [\#47](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/47)
86
86
 
87
- - Separate by lists: Enhancements, Bugs, Pull requests. [\#31](https://github.com/skywinder/Github-Changelog-Generator/issues/31)
87
+ - Separate by lists: Enhancements, Bugs, Pull requests. [\#31](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/31)
88
88
 
89
89
  **Fixed bugs:**
90
90
 
91
- - Test pull request with invalid label \(\#26\) in changelog appeared. [\#44](https://github.com/skywinder/Github-Changelog-Generator/issues/44)
91
+ - Test pull request with invalid label \(\#26\) in changelog appeared. [\#44](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/44)
92
92
 
93
93
  **Merged pull requests:**
94
94
 
95
- - Implement filtering of Pull Requests by milestones [\#50](https://github.com/skywinder/Github-Changelog-Generator/pull/50) ([skywinder](https://github.com/skywinder))
95
+ - Implement filtering of Pull Requests by milestones [\#50](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/50) ([github-changelog-generator](https://github.com/github-changelog-generator))
96
96
 
97
- ## [1.2.8](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.8) (2015-02-17)
97
+ ## [1.2.8](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.8) (2015-02-17)
98
98
 
99
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.7...1.2.8)
99
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.7...1.2.8)
100
100
 
101
101
  **Closed issues:**
102
102
 
103
- - Bugs, that closed simultaneously with push not appeared in correct version. [\#37](https://github.com/skywinder/Github-Changelog-Generator/issues/37)
103
+ - Bugs, that closed simultaneously with push not appeared in correct version. [\#37](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/37)
104
104
 
105
105
  **Merged pull requests:**
106
106
 
107
- - Feature/fix 37 [\#49](https://github.com/skywinder/Github-Changelog-Generator/pull/49) ([skywinder](https://github.com/skywinder))
107
+ - Feature/fix 37 [\#49](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/49) ([github-changelog-generator](https://github.com/github-changelog-generator))
108
108
 
109
- - Prettify output [\#48](https://github.com/skywinder/Github-Changelog-Generator/pull/48) ([skywinder](https://github.com/skywinder))
109
+ - Prettify output [\#48](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/48) ([github-changelog-generator](https://github.com/github-changelog-generator))
110
110
 
111
- ## [1.2.7](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.7) (2015-01-26)
111
+ ## [1.2.7](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.7) (2015-01-26)
112
112
 
113
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.6...1.2.7)
113
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.6...1.2.7)
114
114
 
115
115
  **Merged pull requests:**
116
116
 
117
- - Add compare link between older version and newer version [\#46](https://github.com/skywinder/Github-Changelog-Generator/pull/46) ([sue445](https://github.com/sue445))
117
+ - Add compare link between older version and newer version [\#46](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/46) ([sue445](https://github.com/sue445))
118
118
 
119
- ## [1.2.6](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.6) (2015-01-21)
119
+ ## [1.2.6](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.6) (2015-01-21)
120
120
 
121
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.5...1.2.6)
121
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.5...1.2.6)
122
122
 
123
123
  **Merged pull requests:**
124
124
 
125
- - fix link tag format [\#45](https://github.com/skywinder/Github-Changelog-Generator/pull/45) ([sugamasao](https://github.com/sugamasao))
125
+ - fix link tag format [\#45](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/45) ([sugamasao](https://github.com/sugamasao))
126
126
 
127
- ## [1.2.5](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.5) (2015-01-15)
127
+ ## [1.2.5](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.5) (2015-01-15)
128
128
 
129
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.4...1.2.5)
129
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.4...1.2.5)
130
130
 
131
131
  **Implemented enhancements:**
132
132
 
133
- - Use milestone to specify in which version bug was fixed [\#22](https://github.com/skywinder/Github-Changelog-Generator/issues/22)
133
+ - Use milestone to specify in which version bug was fixed [\#22](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/22)
134
134
 
135
135
  **Fixed bugs:**
136
136
 
137
- - Error when trying to generate log for repo without tags [\#32](https://github.com/skywinder/Github-Changelog-Generator/issues/32)
137
+ - Error when trying to generate log for repo without tags [\#32](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/32)
138
138
 
139
139
  **Merged pull requests:**
140
140
 
141
- - PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/skywinder/Github-Changelog-Generator/pull/43) ([schwing](https://github.com/schwing))
141
+ - PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/43) ([schwing](https://github.com/schwing))
142
142
 
143
- - support enterprise github via command line options [\#42](https://github.com/skywinder/Github-Changelog-Generator/pull/42) ([glenlovett](https://github.com/glenlovett))
143
+ - support enterprise github via command line options [\#42](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/42) ([glenlovett](https://github.com/glenlovett))
144
144
 
145
- ## [1.2.4](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.4) (2014-12-16)
145
+ ## [1.2.4](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.4) (2014-12-16)
146
146
 
147
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.3...1.2.4)
147
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.3...1.2.4)
148
148
 
149
149
  **Fixed bugs:**
150
150
 
151
- - Sometimes user is NULL during merges [\#41](https://github.com/skywinder/Github-Changelog-Generator/issues/41)
151
+ - Sometimes user is NULL during merges [\#41](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/41)
152
152
 
153
- - Crash when try generate log for rails [\#35](https://github.com/skywinder/Github-Changelog-Generator/issues/35)
153
+ - Crash when try generate log for rails [\#35](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/35)
154
154
 
155
- ## [1.2.3](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.3) (2014-12-16)
155
+ ## [1.2.3](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.3) (2014-12-16)
156
156
 
157
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.2...1.2.3)
157
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.2...1.2.3)
158
158
 
159
159
  **Implemented enhancements:**
160
160
 
161
- - Add ability to run with one parameter instead -u -p [\#38](https://github.com/skywinder/Github-Changelog-Generator/issues/38)
161
+ - Add ability to run with one parameter instead -u -p [\#38](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/38)
162
162
 
163
- - Detailed output [\#33](https://github.com/skywinder/Github-Changelog-Generator/issues/33)
163
+ - Detailed output [\#33](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/33)
164
164
 
165
165
  **Fixed bugs:**
166
166
 
167
- - Docs lacking or basic behavior not as advertised [\#30](https://github.com/skywinder/Github-Changelog-Generator/issues/30)
167
+ - Docs lacking or basic behavior not as advertised [\#30](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/30)
168
168
 
169
169
  **Merged pull requests:**
170
170
 
171
- - Implement async fetching [\#39](https://github.com/skywinder/Github-Changelog-Generator/pull/39) ([skywinder](https://github.com/skywinder))
171
+ - Implement async fetching [\#39](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/39) ([github-changelog-generator](https://github.com/github-changelog-generator))
172
172
 
173
- - Fix crash when user is NULL [\#40](https://github.com/skywinder/Github-Changelog-Generator/pull/40) ([skywinder](https://github.com/skywinder))
173
+ - Fix crash when user is NULL [\#40](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/40) ([github-changelog-generator](https://github.com/github-changelog-generator))
174
174
 
175
- ## [1.2.2](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.2) (2014-12-10)
175
+ ## [1.2.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.2) (2014-12-10)
176
176
 
177
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.1...1.2.2)
177
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.1...1.2.2)
178
178
 
179
179
  **Fixed bugs:**
180
180
 
181
- - Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/skywinder/Github-Changelog-Generator/issues/34)
181
+ - Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/34)
182
182
 
183
183
  **Merged pull requests:**
184
184
 
185
- - Add a Bitdeli Badge to README [\#36](https://github.com/skywinder/Github-Changelog-Generator/pull/36) ([bitdeli-chef](https://github.com/bitdeli-chef))
185
+ - Add a Bitdeli Badge to README [\#36](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/36) ([bitdeli-chef](https://github.com/bitdeli-chef))
186
186
 
187
- ## [1.2.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.1) (2014-11-22)
187
+ ## [1.2.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.1) (2014-11-22)
188
188
 
189
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.2.0...1.2.1)
189
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.2.0...1.2.1)
190
190
 
191
191
  **Fixed bugs:**
192
192
 
193
- - Script fills changelog only for first 30 tags. [\#20](https://github.com/skywinder/Github-Changelog-Generator/issues/20)
193
+ - Script fills changelog only for first 30 tags. [\#20](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/20)
194
194
 
195
195
  **Merged pull requests:**
196
196
 
197
- - Issues for last tag not in list [\#29](https://github.com/skywinder/Github-Changelog-Generator/pull/29) ([skywinder](https://github.com/skywinder))
197
+ - Issues for last tag not in list [\#29](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/29) ([github-changelog-generator](https://github.com/github-changelog-generator))
198
198
 
199
- - Disable default --filter-pull-requests option. [\#28](https://github.com/skywinder/Github-Changelog-Generator/pull/28) ([skywinder](https://github.com/skywinder))
199
+ - Disable default --filter-pull-requests option. [\#28](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/28) ([github-changelog-generator](https://github.com/github-changelog-generator))
200
200
 
201
- ## [1.2.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.2.0) (2014-11-19)
201
+ ## [1.2.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.2.0) (2014-11-19)
202
202
 
203
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.4...1.2.0)
203
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.4...1.2.0)
204
204
 
205
205
  **Merged pull requests:**
206
206
 
207
- - 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))
207
+ - Add filter for pull-requests labels. \(option --filter-pull-requests\) [\#27](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/27) ([github-changelog-generator](https://github.com/github-changelog-generator))
208
208
 
209
- - 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))
209
+ - Add ability to insert authors of pull-requests \(--\[no-\]author option\) [\#25](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/25) ([github-changelog-generator](https://github.com/github-changelog-generator))
210
210
 
211
- - 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))
211
+ - Don't receive issues in case of --no-isses flag specied [\#24](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/24) ([github-changelog-generator](https://github.com/github-changelog-generator))
212
212
 
213
- ## [1.1.4](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.4) (2014-11-18)
213
+ ## [1.1.4](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.4) (2014-11-18)
214
214
 
215
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.2...1.1.4)
215
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.2...1.1.4)
216
216
 
217
217
  **Implemented enhancements:**
218
218
 
219
- - 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)
219
+ - Implement ability to retrieve GitHub token from ENV variable \(to not put it to script directly\) [\#19](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/19)
220
220
 
221
221
  **Merged pull requests:**
222
222
 
223
- - Sort tags by date [\#23](https://github.com/skywinder/Github-Changelog-Generator/pull/23) ([skywinder](https://github.com/skywinder))
223
+ - Sort tags by date [\#23](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/23) ([github-changelog-generator](https://github.com/github-changelog-generator))
224
224
 
225
- ## [1.1.2](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.2) (2014-11-12)
225
+ ## [1.1.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.2) (2014-11-12)
226
226
 
227
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.1...1.1.2)
227
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.1...1.1.2)
228
228
 
229
229
  **Merged pull requests:**
230
230
 
231
- - Fix bug with dot signs in project name [\#18](https://github.com/skywinder/Github-Changelog-Generator/pull/18) ([skywinder](https://github.com/skywinder))
231
+ - Fix bug with dot signs in project name [\#18](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/18) ([github-changelog-generator](https://github.com/github-changelog-generator))
232
232
 
233
- - Fix bug with dot signs in user name [\#17](https://github.com/skywinder/Github-Changelog-Generator/pull/17) ([skywinder](https://github.com/skywinder))
233
+ - Fix bug with dot signs in user name [\#17](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/17) ([github-changelog-generator](https://github.com/github-changelog-generator))
234
234
 
235
- ## [1.1.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.1) (2014-11-10)
235
+ ## [1.1.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.1) (2014-11-10)
236
236
 
237
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.1.0...1.1.1)
237
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.1.0...1.1.1)
238
238
 
239
239
  **Merged pull requests:**
240
240
 
241
- - 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))
241
+ - Remove duplicates of issues and pull-requests with same number [\#15](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/15) ([github-changelog-generator](https://github.com/github-changelog-generator))
242
242
 
243
- - Sort issues by tags [\#14](https://github.com/skywinder/Github-Changelog-Generator/pull/14) ([skywinder](https://github.com/skywinder))
243
+ - Sort issues by tags [\#14](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/14) ([github-changelog-generator](https://github.com/github-changelog-generator))
244
244
 
245
- - 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))
245
+ - Add ability to add or exclude issues without any labels [\#13](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/13) ([github-changelog-generator](https://github.com/github-changelog-generator))
246
246
 
247
- ## [1.1.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.1.0) (2014-11-10)
247
+ ## [1.1.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.1.0) (2014-11-10)
248
248
 
249
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.0.1...1.1.0)
249
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.0.1...1.1.0)
250
250
 
251
251
  **Implemented enhancements:**
252
252
 
253
- - Detect username and project form origin [\#11](https://github.com/skywinder/Github-Changelog-Generator/issues/11)
253
+ - Detect username and project form origin [\#11](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/11)
254
254
 
255
255
  **Fixed bugs:**
256
256
 
257
- - Bug with wrong credentials in 1.0.1 [\#12](https://github.com/skywinder/Github-Changelog-Generator/issues/12)
257
+ - Bug with wrong credentials in 1.0.1 [\#12](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/12)
258
258
 
259
- - Markdown formating in the last line wrong [\#9](https://github.com/skywinder/Github-Changelog-Generator/issues/9)
259
+ - Markdown formating in the last line wrong [\#9](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/9)
260
260
 
261
- ## [1.0.1](https://github.com/skywinder/Github-Changelog-Generator/tree/1.0.1) (2014-11-10)
261
+ ## [1.0.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.0.1) (2014-11-10)
262
262
 
263
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/1.0.0...1.0.1)
263
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/1.0.0...1.0.1)
264
264
 
265
- ## [1.0.0](https://github.com/skywinder/Github-Changelog-Generator/tree/1.0.0) (2014-11-07)
265
+ ## [1.0.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/1.0.0) (2014-11-07)
266
266
 
267
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/0.1.0...1.0.0)
267
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/0.1.0...1.0.0)
268
268
 
269
269
  **Implemented enhancements:**
270
270
 
271
- - Add support for fixed issues and implemented enchanments. [\#6](https://github.com/skywinder/Github-Changelog-Generator/issues/6)
271
+ - Add support for fixed issues and implemented enchanments. [\#6](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/6)
272
272
 
273
- - Implement option to specify output filename [\#4](https://github.com/skywinder/Github-Changelog-Generator/issues/4)
273
+ - Implement option to specify output filename [\#4](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/4)
274
274
 
275
275
  **Fixed bugs:**
276
276
 
277
- - Last tag not appeared in changelog [\#5](https://github.com/skywinder/Github-Changelog-Generator/issues/5)
277
+ - Last tag not appeared in changelog [\#5](https://github.com/github-changelog-generator/Github-Changelog-Generator/issues/5)
278
278
 
279
279
  **Merged pull requests:**
280
280
 
281
- - Implement support of different tags. [\#8](https://github.com/skywinder/Github-Changelog-Generator/pull/8) ([skywinder](https://github.com/skywinder))
281
+ - Implement support of different tags. [\#8](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/8) ([github-changelog-generator](https://github.com/github-changelog-generator))
282
282
 
283
- - Add support for issues in CHANGELOG [\#7](https://github.com/skywinder/Github-Changelog-Generator/pull/7) ([skywinder](https://github.com/skywinder))
283
+ - Add support for issues in CHANGELOG [\#7](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/7) ([github-changelog-generator](https://github.com/github-changelog-generator))
284
284
 
285
- ## [0.1.0](https://github.com/skywinder/Github-Changelog-Generator/tree/0.1.0) (2014-11-07)
285
+ ## [0.1.0](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/0.1.0) (2014-11-07)
286
286
 
287
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/0.0.2...0.1.0)
287
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/0.0.2...0.1.0)
288
288
 
289
289
  **Merged pull requests:**
290
290
 
291
- - Fix parsing date of pull request [\#3](https://github.com/skywinder/Github-Changelog-Generator/pull/3) ([skywinder](https://github.com/skywinder))
291
+ - Fix parsing date of pull request [\#3](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/3) ([github-changelog-generator](https://github.com/github-changelog-generator))
292
292
 
293
- - Add changelog generation for last tag [\#2](https://github.com/skywinder/Github-Changelog-Generator/pull/2) ([skywinder](https://github.com/skywinder))
293
+ - Add changelog generation for last tag [\#2](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/2) ([github-changelog-generator](https://github.com/github-changelog-generator))
294
294
 
295
- - 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))
295
+ - Add option \(-o --output\) to specify name of the output file. [\#1](https://github.com/github-changelog-generator/Github-Changelog-Generator/pull/1) ([github-changelog-generator](https://github.com/github-changelog-generator))
296
296
 
297
- ## [0.0.2](https://github.com/skywinder/Github-Changelog-Generator/tree/0.0.2) (2014-11-06)
297
+ ## [0.0.2](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/0.0.2) (2014-11-06)
298
298
 
299
- [Full Changelog](https://github.com/skywinder/Github-Changelog-Generator/compare/0.0.1...0.0.2)
299
+ [Full Changelog](https://github.com/github-changelog-generator/Github-Changelog-Generator/compare/0.0.1...0.0.2)
300
300
 
301
- ## [0.0.1](https://github.com/skywinder/Github-Changelog-Generator/tree/0.0.1) (2014-11-06)
301
+ ## [0.0.1](https://github.com/github-changelog-generator/Github-Changelog-Generator/tree/0.0.1) (2014-11-06)
302
302
 
303
303
 
304
304
 
305
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
305
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/Github-Changelog-Generator)*