github_changelog_generator 1.11.8 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 31ca202c351bced0544cdf33152d5cc53f37f194
4
- data.tar.gz: d8dad45f7873995dc46206726f96226b4b154e52
3
+ metadata.gz: 0bc9f85572370bebc2158e14df8a13fca36b84f6
4
+ data.tar.gz: b07efcc42c2db0d70fd2152bb4fe7ff90f4b24e5
5
5
  SHA512:
6
- metadata.gz: 3f0b1e7bce6e8dd23a9a712bd24354d9743c0b5947cdfa4230d6be3b8ecb9173d00e27eb82aa6f762e4e59f3ad2ecbe759081788cd4c50564d2ec05704ea485d
7
- data.tar.gz: 6c38303cf5d4e42c4dc6df010c5c27b6842e08927d514c1045f9c566692ac804a12ab08dbb57c850d613749c76b10432dae302726fc3c53b469be51b9a4f3d20
6
+ metadata.gz: 98d0ac3c914a8e33bb3d3b5a90160216d048f2c58d676d7ff39987dca1f5b85ec3c5ad8e20a332825eb94c28ac2e3cd2635f9f1a49edb756a5683dd195c27218
7
+ data.tar.gz: 825a3c6eb6b9c3cd389546f0f65941a92ab2a5d53c50336a1ad9e2a8d24906a11126861e6fe7613b4464c571fcf61e127241c99f77bf4fbc304d938c08a5d1d3
data/README.md CHANGED
@@ -101,7 +101,7 @@ Therefore, it's recommended to run this script with authentication by using a **
101
101
 
102
102
  Here's how:
103
103
 
104
- - [Generate a token here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token)
104
+ - [Generate a token here](https://github.com/settings/tokens/new?description=GitHub%20Changelog%20Generator%20token) - you only need "repo" scope for private repositories
105
105
  - Either:
106
106
  - Run the script with `--token <your-40-digit-token>`; **OR**
107
107
  - Set the `CHANGELOG_GITHUB_TOKEN` environment variable to your 40 digit token
@@ -3,34 +3,59 @@ require "pathname"
3
3
  module GitHubChangelogGenerator
4
4
  ParserError = Class.new(StandardError)
5
5
 
6
+ # ParserFile is a configuration file reader which sets options in the
7
+ # given Hash.
8
+ #
9
+ # In your project's root, you can put a file named
10
+ # <tt>.github_changelog_generator</tt> to override defaults.
11
+ #
12
+ # Example:
13
+ # header_label=# My Super Changelog
14
+ # ; Comments are allowed
15
+ # future-release=5.0.0
16
+ # # Ruby-style comments, too
17
+ # since-tag=1.0.0
18
+ #
19
+ # The configuration format is <tt>some-key=value</tt> or <tt>some_key=value</tt>.
20
+ #
6
21
  class ParserFile
7
- FILENAME = ".github_changelog_generator"
8
-
9
- def initialize(options)
22
+ # @param options [Hash] options to be configured from file contents
23
+ # @param file [nil,IO] configuration file handle, defaults to opening `.github_changelog_generator`
24
+ def initialize(options, file = open_settings_file)
10
25
  @options = options
26
+ @file = file
11
27
  end
12
28
 
13
- # Destructively change @options using data in configured options file.
29
+ # Sets options using configuration file content
14
30
  def parse!
15
- file.each_line { |line| parse_line!(line) } if file.exist?
31
+ return unless @file
32
+ @file.each_with_index { |line, i| parse_line!(line, i + 1) }
33
+ @file.close
16
34
  end
17
35
 
18
36
  private
19
37
 
20
- def file
21
- @file ||= Pathname(File.expand_path(@options[:params_file] || FILENAME))
38
+ FILENAME = ".github_changelog_generator"
39
+
40
+ def open_settings_file
41
+ path = Pathname(File.expand_path(FILENAME))
42
+ File.open(path) if path.exist?
22
43
  end
23
44
 
24
- def parse_line!(line)
25
- key_sym, value = extract_pair(line)
26
- value = true if value =~ /^(true|t|yes|y|1)$/i
27
- value = false if value =~ /^(false|f|no|n|0)$/i
28
- @options[key_sym] = value
45
+ def parse_line!(line, line_number)
46
+ return if non_configuration_line?(line)
47
+ option_name, value = extract_pair(line)
48
+ @options[option_key_for(option_name)] = convert_value(value, option_name)
29
49
  rescue
30
- raise ParserError, "Config file #{file} is incorrect in line \"#{line.gsub(/[\n\r]+/, '')}\""
50
+ raise ParserError, "Failed on line ##{line_number}: \"#{line.gsub(/[\n\r]+/, '')}\""
51
+ end
52
+
53
+ # Returns true if the line starts with a pound sign or a semi-colon.
54
+ def non_configuration_line?(line)
55
+ line =~ /^[\#;]/ || line =~ /^[\s]+$/
31
56
  end
32
57
 
33
- # Returns a the setting as a symbol and its string value sans newlines.
58
+ # Returns a the option name as a symbol and its string value sans newlines.
34
59
  #
35
60
  # @param line [String] unparsed line from config file
36
61
  # @return [Array<Symbol, String>]
@@ -38,5 +63,41 @@ module GitHubChangelogGenerator
38
63
  key, value = line.split("=", 2)
39
64
  [key.sub("-", "_").to_sym, value.gsub(/[\n\r]+/, "")]
40
65
  end
66
+
67
+ KNOWN_ARRAY_KEYS = [:exclude_labels, :include_labels, :bug_labels,
68
+ :enhancement_labels, :between_tags, :exclude_tags]
69
+ KNOWN_INTEGER_KEYS = [:max_issues]
70
+
71
+ def convert_value(value, option_name)
72
+ if KNOWN_ARRAY_KEYS.include?(option_name)
73
+ value.split(",")
74
+ elsif KNOWN_INTEGER_KEYS.include?(option_name)
75
+ value.to_i
76
+ elsif value =~ /^(true|t|yes|y|1)$/i
77
+ true
78
+ elsif value =~ /^(false|f|no|n|0)$/i
79
+ false
80
+ else
81
+ value
82
+ end
83
+ end
84
+
85
+ IRREGULAR_OPTIONS = {
86
+ bugs_label: :bug_prefix,
87
+ enhancement_label: :enhancement_prefix,
88
+ issues_label: :issue_prefix,
89
+ header_label: :header,
90
+ front_matter: :frontmatter,
91
+ pr_label: :merge_prefix,
92
+ issues_wo_labels: :add_issues_wo_labels,
93
+ pr_wo_labels: :add_pr_wo_labels,
94
+ pull_requests: :pulls,
95
+ filter_by_milestone: :filter_issues_by_milestone,
96
+ github_api: :github_endpoint
97
+ }
98
+
99
+ def option_key_for(option_name)
100
+ IRREGULAR_OPTIONS.fetch(option_name) { option_name }
101
+ end
41
102
  end
42
103
  end
@@ -1,3 +1,3 @@
1
1
  module GitHubChangelogGenerator
2
- VERSION = "1.11.8"
2
+ VERSION = "1.12.0"
3
3
  end
@@ -0,0 +1,3 @@
1
+ source "https://rubygems.org"
2
+
3
+ gem "github_changelog_generator", path: Dir.glob("../pkg/github_changelog_generator-*.gem")[0]
@@ -1,36 +1,47 @@
1
1
  describe GitHubChangelogGenerator::ParserFile do
2
2
  describe ".github_changelog_generator" do
3
- context "when no has file" do
4
- let(:options) { {} }
5
- let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
6
- subject { parse.parse! }
3
+ let(:options) { {} }
4
+
5
+ context "when the well-known default file does not exist" do
6
+ let(:parser) { GitHubChangelogGenerator::ParserFile.new(options) }
7
+ subject { parser.parse! }
7
8
  it { is_expected.to be_nil }
8
9
  end
9
10
 
10
11
  context "when file is empty" do
11
- let(:options) { { params_file: "spec/files/github_changelog_params_empty" } }
12
- let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
12
+ let(:parser) { GitHubChangelogGenerator::ParserFile.new(options, StringIO.new("")) }
13
13
 
14
14
  it "does not change the options" do
15
- expect { parse.parse! }.to_not change { options }
15
+ expect { parser.parse! }.to_not change { options }
16
16
  end
17
17
  end
18
18
 
19
19
  context "when file is incorrect" do
20
- let(:options) { { params_file: "spec/files/github_changelog_params_incorrect" } }
21
20
  let(:options_before_change) { options.dup }
22
- let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
23
- it { expect { parse.parse! }.to raise_error(GitHubChangelogGenerator::ParserError) }
21
+ let(:file) { StringIO.new("unreleased_label=staging\nunreleased: false") }
22
+ let(:parser) do
23
+ GitHubChangelogGenerator::ParserFile.new(options, file)
24
+ end
25
+ it { expect { parser.parse! }.to raise_error(/line #2/) }
26
+ end
27
+
28
+ context "allows empty lines and comments with semi-colon or pound sign" do
29
+ let(:file) { StringIO.new("\n \n# Comment on first line\nunreleased_label=staging\n; Comment on third line\nunreleased=false") }
30
+ let(:parser) do
31
+ GitHubChangelogGenerator::ParserFile.new(options, file)
32
+ end
33
+ it { expect { parser.parse! }.not_to raise_error }
24
34
  end
25
35
 
26
36
  context "when override default values" do
27
37
  let(:default_options) { GitHubChangelogGenerator::Parser.default_options }
28
- let(:options) { { params_file: "spec/files/github_changelog_params_override" }.merge(default_options) }
38
+ let(:options) { {}.merge(default_options) }
29
39
  let(:options_before_change) { options.dup }
30
- let(:parse) { GitHubChangelogGenerator::ParserFile.new(options) }
40
+ let(:file) { StringIO.new("unreleased_label=staging\nunreleased=false\nheader==== Changelog ===") }
41
+ let(:parser) { GitHubChangelogGenerator::ParserFile.new(options, file) }
31
42
 
32
43
  it "changes the options" do
33
- expect { parse.parse! }.to change { options }
44
+ expect { parser.parse! }.to change { options }
34
45
  .from(options_before_change)
35
46
  .to(options_before_change.merge(unreleased_label: "staging",
36
47
  unreleased: false,
@@ -38,17 +49,24 @@ describe GitHubChangelogGenerator::ParserFile do
38
49
  end
39
50
 
40
51
  context "turns exclude-labels into an Array", bug: '#327' do
41
- let(:options) do
42
- {
43
- params_file: "spec/files/github_changelog_params_327"
44
- }
52
+ let(:file) do
53
+ StringIO.new(<<EOF
54
+ exclude-labels=73a91042-da6f-11e5-9335-1040f38d7f90,7adf83b4-da6f-11e5-ae18-1040f38d7f90
55
+ header_label=# My changelog
56
+ EOF
57
+ )
45
58
  end
46
59
  it "reads exclude_labels into an Array" do
47
- pending("Related with Bug #327.")
48
- expect { parse.parse! }.to change { options[:exclude_labels] }
49
- .from(nil)
60
+ expect { parser.parse! }.to change { options[:exclude_labels] }
61
+ .from(default_options[:exclude_labels])
50
62
  .to(["73a91042-da6f-11e5-9335-1040f38d7f90", "7adf83b4-da6f-11e5-ae18-1040f38d7f90"])
51
63
  end
64
+
65
+ it "translates given header_label into the :header option" do
66
+ expect { parser.parse! }.to change { options[:header] }
67
+ .from(default_options[:header])
68
+ .to("# My changelog")
69
+ end
52
70
  end
53
71
  end
54
72
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github_changelog_generator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.8
4
+ version: 1.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Petr Korolev
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-03-22 00:00:00.000000000 Z
12
+ date: 2016-04-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -116,27 +116,13 @@ email: sky4winder+github_changelog_generator@gmail.com
116
116
  executables:
117
117
  - git-generate-changelog
118
118
  - github_changelog_generator
119
- extensions:
120
- - Rakefile
119
+ extensions: []
121
120
  extra_rdoc_files: []
122
121
  files:
123
- - ".coveralls.yml"
124
- - ".gitignore"
125
- - ".hound.yml"
126
- - ".overcommit.yml"
127
- - ".rspec"
128
- - ".rubocop.yml"
129
- - ".rubocop_todo.yml"
130
- - ".travis.yml"
131
- - CHANGELOG.md
132
- - Gemfile
133
- - Gemfile.lock
134
122
  - README.md
135
123
  - Rakefile
136
124
  - bin/git-generate-changelog
137
125
  - bin/github_changelog_generator
138
- - github_changelog_generator.gemspec
139
- - images/logo.jpg
140
126
  - lib/CHANGELOG.md
141
127
  - lib/github_changelog_generator.rb
142
128
  - lib/github_changelog_generator/fetcher.rb
@@ -157,10 +143,7 @@ files:
157
143
  - spec/files/angular.js.md
158
144
  - spec/files/bundler.md
159
145
  - spec/files/github-changelog-generator.md
160
- - spec/files/github_changelog_params_327
161
- - spec/files/github_changelog_params_empty
162
- - spec/files/github_changelog_params_incorrect
163
- - spec/files/github_changelog_params_override
146
+ - spec/install-gem-in-bundler.gemfile
164
147
  - spec/spec_helper.rb
165
148
  - spec/unit/fetcher_spec.rb
166
149
  - spec/unit/generator/generator_processor_spec.rb
@@ -197,10 +180,7 @@ test_files:
197
180
  - spec/files/angular.js.md
198
181
  - spec/files/bundler.md
199
182
  - spec/files/github-changelog-generator.md
200
- - spec/files/github_changelog_params_327
201
- - spec/files/github_changelog_params_empty
202
- - spec/files/github_changelog_params_incorrect
203
- - spec/files/github_changelog_params_override
183
+ - spec/install-gem-in-bundler.gemfile
204
184
  - spec/spec_helper.rb
205
185
  - spec/unit/fetcher_spec.rb
206
186
  - spec/unit/generator/generator_processor_spec.rb
@@ -1 +0,0 @@
1
- service_name: travis-ci
data/.gitignore DELETED
@@ -1 +0,0 @@
1
- coverage/
data/.hound.yml DELETED
@@ -1,2 +0,0 @@
1
- ruby:
2
- config_file: .rubocop.yml
@@ -1,36 +0,0 @@
1
- # Use this file to configure the Overcommit hooks you wish to use. This will
2
- # extend the default configuration defined in:
3
- # https://github.com/brigade/overcommit/blob/master/config/default.yml
4
- #
5
- # At the topmost level of this YAML file is a key representing type of hook
6
- # being run (e.g. pre-commit, commit-msg, etc.). Within each type you can
7
- # customize each hook, such as whether to only run it on certain files (via
8
- # `include`), whether to only display output if it fails (via `quiet`), etc.
9
- #
10
- # For a complete list of hooks, see:
11
- # https://github.com/brigade/overcommit/tree/master/lib/overcommit/hook
12
- #
13
- # For a complete list of options that you can use to customize hooks, see:
14
- # https://github.com/brigade/overcommit#configuration
15
- #
16
- # Uncomment the following lines to make the configuration take effect.
17
-
18
- PreCommit:
19
- RuboCop:
20
- enabled: true
21
- #command: ['bundle', 'exec', 'rubocop']
22
- on_warn: fail # Treat all warnings as failures
23
- #
24
- # TrailingWhitespace:
25
- # exclude:
26
- # - '**/db/structure.sql' # Ignore trailing whitespace in generated files
27
- #
28
- #PostCheckout:
29
- # ALL: # Special hook name that customizes all hooks of this type
30
- # quiet: true # Change all post-checkout hooks to only display output on failure
31
- #
32
- # IndexTags:
33
- # enabled: true # Generate a tags file with `ctags` each time HEAD changes
34
- CommitMsg:
35
- CapitalizedSubject:
36
- enabled: false
data/.rspec DELETED
@@ -1,2 +0,0 @@
1
- --color
2
- --require spec_helper
@@ -1,56 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
2
-
3
- Metrics/LineLength:
4
- Enabled: false
5
-
6
- #http://viget.com/extend/just-use-double-quoted-ruby-strings
7
- Style/StringLiterals:
8
- EnforcedStyle: double_quotes
9
-
10
- # Configuration parameters: CountComments.
11
- Metrics/ClassLength:
12
- Enabled: false
13
-
14
- # Configuration parameters: CountComments.
15
- Metrics/MethodLength:
16
- Enabled: false
17
-
18
- Style/FileName:
19
- Exclude:
20
- - 'bin/git-generate-changelog'
21
-
22
- #TODOS
23
- # Offense count: 14
24
- Metrics/AbcSize:
25
- Enabled: false
26
-
27
- # Offense count: 1
28
- Style/AccessorMethodName:
29
- Enabled: false
30
-
31
- # Offense count: 10
32
- Style/Documentation:
33
- Enabled: false
34
-
35
- # Offense count: 1
36
- # Configuration parameters: MinBodyLength.
37
- Style/GuardClause:
38
- Enabled: false
39
-
40
- # Offense count: 2
41
- # Cop supports --auto-correct.
42
- # Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
43
- # SupportedStyles: skip_modifier_ifs, always
44
- Style/Next:
45
- Enabled: false
46
-
47
- # Offense count: 3
48
- # Cop supports --auto-correct.
49
- # Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
50
- # SupportedStyles: slashes, percent_r, mixed
51
- Style/RegexpLiteral:
52
- Enabled: false
53
-
54
- Style/MutableConstant:
55
- Enabled: false
56
-
@@ -1,51 +0,0 @@
1
- # This configuration was generated by
2
- # `rubocop --auto-gen-config`
3
- # on 2016-02-23 17:18:27 +0200 using RuboCop version 0.37.2.
4
- # The point is for the user to remove these configuration records
5
- # one by one as the offenses are removed from the code base.
6
- # Note that changes in the inspected code, or installation of new
7
- # versions of RuboCop, may require this file to be generated again.
8
-
9
- # Offense count: 1
10
- Lint/ImplicitStringConcatenation:
11
- Exclude:
12
- - 'lib/github_changelog_generator/parser.rb'
13
-
14
- # Offense count: 14
15
- Metrics/AbcSize:
16
- Enabled: false
17
-
18
- # Offense count: 1
19
- Metrics/CyclomaticComplexity:
20
- Max: 7
21
-
22
- # Offense count: 2
23
- Metrics/PerceivedComplexity:
24
- Max: 8
25
-
26
- # Offense count: 1
27
- Style/AccessorMethodName:
28
- Enabled: false
29
-
30
- # Offense count: 10
31
- Style/Documentation:
32
- Enabled: false
33
-
34
- # Offense count: 1
35
- # Configuration parameters: MinBodyLength.
36
- Style/GuardClause:
37
- Enabled: false
38
-
39
- # Offense count: 2
40
- # Cop supports --auto-correct.
41
- # Configuration parameters: EnforcedStyle, MinBodyLength, SupportedStyles.
42
- # SupportedStyles: skip_modifier_ifs, always
43
- Style/Next:
44
- Enabled: false
45
-
46
- # Offense count: 3
47
- # Cop supports --auto-correct.
48
- # Configuration parameters: EnforcedStyle, SupportedStyles, AllowInnerSlashes.
49
- # SupportedStyles: slashes, percent_r, mixed
50
- Style/RegexpLiteral:
51
- Enabled: false
@@ -1,25 +0,0 @@
1
- sudo: false
2
- language: ruby
3
- before_install:
4
- - gem update --system
5
- - gem install bundler
6
- rvm:
7
- - 2.1.0
8
- script: bundle exec rake checks
9
- matrix:
10
- include:
11
- # Test install on clean system
12
- - install: true
13
- script:
14
- - gem build github_changelog_generator
15
- - gem install *.gem
16
- notifications:
17
- email:
18
- recipients:
19
- - sky4winder+githubchangeloggenerator@gmail.com
20
- on_success: never
21
- on_failure: change
22
- addons:
23
- code_climate:
24
- repo_token:
25
- secure: iMpV5IAvH+/EVGZrpWnt2BnmNFzSbsRcIumsr4ZyLC8N5nrCSXyjCSy0g48btL3Sj0bSgK9hcrJsmrFd2bkqFleyAcPAzNyUQzBuIRZx47O8yFmbZ+Pj+l3+KOlmcbzJNHfDfxkxuWTmTAcSDfsiyApin721T/ey3SUuwKpZNUc=
@@ -1,551 +0,0 @@
1
- # Change Log
2
-
3
- ## [1.11.7](https://github.com/skywinder/github-changelog-generator/tree/1.11.7) (2016-03-04)
4
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.6...1.11.7)
5
-
6
- **Merged pull requests:**
7
-
8
- - Add Olle Jonsson as co-author [\#347](https://github.com/skywinder/github-changelog-generator/pull/347) ([skywinder](https://github.com/skywinder))
9
- - Gemspec, default date [\#346](https://github.com/skywinder/github-changelog-generator/pull/346) ([olleolleolle](https://github.com/olleolleolle))
10
-
11
- ## [1.11.6](https://github.com/skywinder/github-changelog-generator/tree/1.11.6) (2016-03-01)
12
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.5...1.11.6)
13
-
14
- **Fixed bugs:**
15
-
16
- - Can't build on Windows [\#340](https://github.com/skywinder/github-changelog-generator/issues/340)
17
-
18
- **Closed issues:**
19
-
20
- - install error "Not a git repository" [\#339](https://github.com/skywinder/github-changelog-generator/issues/339)
21
-
22
- **Merged pull requests:**
23
-
24
- - Gemspec: Calculate date using Date stdlib [\#343](https://github.com/skywinder/github-changelog-generator/pull/343) ([olleolleolle](https://github.com/olleolleolle))
25
-
26
- ## [1.11.5](https://github.com/skywinder/github-changelog-generator/tree/1.11.5) (2016-03-01)
27
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.4...1.11.5)
28
-
29
- **Merged pull requests:**
30
-
31
- - Test clean install in Travis [\#344](https://github.com/skywinder/github-changelog-generator/pull/344) ([jkeiser](https://github.com/jkeiser))
32
- - Update Rakefile to avoid install-breaking bug [\#341](https://github.com/skywinder/github-changelog-generator/pull/341) ([olleolleolle](https://github.com/olleolleolle))
33
-
34
- ## [1.11.4](https://github.com/skywinder/github-changelog-generator/tree/1.11.4) (2016-02-26)
35
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.3...1.11.4)
36
-
37
- **Merged pull requests:**
38
-
39
- - Man page copying: only copy .1 [\#338](https://github.com/skywinder/github-changelog-generator/pull/338) ([olleolleolle](https://github.com/olleolleolle))
40
-
41
- ## [1.11.3](https://github.com/skywinder/github-changelog-generator/tree/1.11.3) (2016-02-25)
42
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.2...1.11.3)
43
-
44
- **Closed issues:**
45
-
46
- - Cannot install gem [\#335](https://github.com/skywinder/github-changelog-generator/issues/335)
47
-
48
- ## [1.11.2](https://github.com/skywinder/github-changelog-generator/tree/1.11.2) (2016-02-25)
49
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.1...1.11.2)
50
-
51
- **Fixed bugs:**
52
-
53
- - Getting an error on install [\#329](https://github.com/skywinder/github-changelog-generator/issues/329)
54
-
55
- **Merged pull requests:**
56
-
57
- - Fix installation by not running the specs - which have dependencies [\#337](https://github.com/skywinder/github-changelog-generator/pull/337) ([skywinder](https://github.com/skywinder))
58
-
59
- ## [1.11.1](https://github.com/skywinder/github-changelog-generator/tree/1.11.1) (2016-02-25)
60
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.0...1.11.1)
61
-
62
- **Merged pull requests:**
63
-
64
- - Add rubocop and rspec as runtime dependencies [\#336](https://github.com/skywinder/github-changelog-generator/pull/336) ([jkeiser](https://github.com/jkeiser))
65
- - \[Refactor\] ParserFile class use Pathname [\#334](https://github.com/skywinder/github-changelog-generator/pull/334) ([olleolleolle](https://github.com/olleolleolle))
66
- - \[Refactor\] Generator\#exclude\_issues\_by\_labels simpler, tested [\#332](https://github.com/skywinder/github-changelog-generator/pull/332) ([olleolleolle](https://github.com/olleolleolle))
67
-
68
- ## [1.11.0](https://github.com/skywinder/github-changelog-generator/tree/1.11.0) (2016-02-24)
69
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.5...1.11.0)
70
-
71
- ## [1.10.5](https://github.com/skywinder/github-changelog-generator/tree/1.10.5) (2016-02-24)
72
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.4...1.10.5)
73
-
74
- ## [1.10.4](https://github.com/skywinder/github-changelog-generator/tree/1.10.4) (2016-02-24)
75
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.3...1.10.4)
76
-
77
- **Fixed bugs:**
78
-
79
- - Rake and Bundler as runtime deps [\#333](https://github.com/skywinder/github-changelog-generator/pull/333) ([olleolleolle](https://github.com/olleolleolle))
80
-
81
- **Merged pull requests:**
82
-
83
- - Test case for \#327 [\#331](https://github.com/skywinder/github-changelog-generator/pull/331) ([olleolleolle](https://github.com/olleolleolle))
84
- - Fix crash installing on systems without overcommit [\#330](https://github.com/skywinder/github-changelog-generator/pull/330) ([jkeiser](https://github.com/jkeiser))
85
-
86
- ## [1.10.3](https://github.com/skywinder/github-changelog-generator/tree/1.10.3) (2016-02-23)
87
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.2...1.10.3)
88
-
89
- ## [1.10.2](https://github.com/skywinder/github-changelog-generator/tree/1.10.2) (2016-02-23)
90
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/v1.11.0...1.10.2)
91
-
92
- ## [v1.11.0](https://github.com/skywinder/github-changelog-generator/tree/v1.11.0) (2016-02-23)
93
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.1...v1.11.0)
94
-
95
- **Implemented enhancements:**
96
-
97
- - YAML front matter [\#322](https://github.com/skywinder/github-changelog-generator/pull/322) ([retorquere](https://github.com/retorquere))
98
- - Git Subcommand [\#288](https://github.com/skywinder/github-changelog-generator/pull/288) ([dlanileonardo](https://github.com/dlanileonardo))
99
-
100
- **Fixed bugs:**
101
-
102
- - detect\_since\_tag undefined [\#328](https://github.com/skywinder/github-changelog-generator/issues/328)
103
-
104
- **Merged pull requests:**
105
-
106
- - Update README.md [\#324](https://github.com/skywinder/github-changelog-generator/pull/324) ([Zearin](https://github.com/Zearin))
107
-
108
- ## [1.10.1](https://github.com/skywinder/github-changelog-generator/tree/1.10.1) (2016-01-06)
109
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.0...1.10.1)
110
-
111
- **Fixed bugs:**
112
-
113
- - Parser: avoid Ruby exit, to make Rake tasks work [\#315](https://github.com/skywinder/github-changelog-generator/pull/315) ([olleolleolle](https://github.com/olleolleolle))
114
-
115
- ## [1.10.0](https://github.com/skywinder/github-changelog-generator/tree/1.10.0) (2016-01-05)
116
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.9.0...1.10.0)
117
-
118
- **Implemented enhancements:**
119
-
120
- - Rubocop: less complex methods in parser.rb [\#297](https://github.com/skywinder/github-changelog-generator/pull/297) ([olleolleolle](https://github.com/olleolleolle))
121
- - Introduce ParserError exception class [\#296](https://github.com/skywinder/github-changelog-generator/pull/296) ([olleolleolle](https://github.com/olleolleolle))
122
- - ParserFile: support values with equals signs [\#285](https://github.com/skywinder/github-changelog-generator/pull/285) ([olleolleolle](https://github.com/olleolleolle))
123
-
124
- **Closed issues:**
125
-
126
- - PRs not closed on master branch show up in changelog [\#280](https://github.com/skywinder/github-changelog-generator/issues/280)
127
-
128
- **Merged pull requests:**
129
-
130
- - Update bundler [\#306](https://github.com/skywinder/github-changelog-generator/pull/306) ([SteveGilvarry](https://github.com/SteveGilvarry))
131
- - Fixes \#280 Add release-branch option to filter the Pull Requests [\#305](https://github.com/skywinder/github-changelog-generator/pull/305) ([SteveGilvarry](https://github.com/SteveGilvarry))
132
- - Add options to def self.user\_and\_project\_from\_git to fix parser.rb:19… [\#303](https://github.com/skywinder/github-changelog-generator/pull/303) ([SteveGilvarry](https://github.com/SteveGilvarry))
133
- - Git ignore coverage/ [\#300](https://github.com/skywinder/github-changelog-generator/pull/300) ([olleolleolle](https://github.com/olleolleolle))
134
- - \[refactor\] Fix docblock datatype, use \#map [\#299](https://github.com/skywinder/github-changelog-generator/pull/299) ([olleolleolle](https://github.com/olleolleolle))
135
- - \[refactor\] Reader: positive Boolean; unused \#map [\#298](https://github.com/skywinder/github-changelog-generator/pull/298) ([olleolleolle](https://github.com/olleolleolle))
136
- - Add base option to RakeTask [\#287](https://github.com/skywinder/github-changelog-generator/pull/287) ([jkeiser](https://github.com/jkeiser))
137
-
138
- ## [1.9.0](https://github.com/skywinder/github-changelog-generator/tree/1.9.0) (2015-09-17)
139
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.5...1.9.0)
140
-
141
- **Implemented enhancements:**
142
-
143
- - Feature: exclude\_tags using regular expression [\#281](https://github.com/skywinder/github-changelog-generator/pull/281) ([olleolleolle](https://github.com/olleolleolle))
144
- - Auto parse options from file .github\_changelog\_generator [\#278](https://github.com/skywinder/github-changelog-generator/pull/278) ([dlanileonardo](https://github.com/dlanileonardo))
145
-
146
- ## [1.8.5](https://github.com/skywinder/github-changelog-generator/tree/1.8.5) (2015-09-15)
147
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.4...1.8.5)
148
-
149
- **Merged pull requests:**
150
-
151
- - Rake task: Be able to set false value in config [\#279](https://github.com/skywinder/github-changelog-generator/pull/279) ([olleolleolle](https://github.com/olleolleolle))
152
-
153
- ## [1.8.4](https://github.com/skywinder/github-changelog-generator/tree/1.8.4) (2015-09-01)
154
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.3...1.8.4)
155
-
156
- **Fixed bugs:**
157
-
158
- - Sending OATH through -t fails [\#274](https://github.com/skywinder/github-changelog-generator/issues/274)
159
-
160
- ## [1.8.3](https://github.com/skywinder/github-changelog-generator/tree/1.8.3) (2015-08-31)
161
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.2...1.8.3)
162
-
163
- **Merged pull requests:**
164
-
165
- - Do not alter pull\_requests while iterating on it [\#271](https://github.com/skywinder/github-changelog-generator/pull/271) ([raphink](https://github.com/raphink))
166
-
167
- ## [1.8.2](https://github.com/skywinder/github-changelog-generator/tree/1.8.2) (2015-08-26)
168
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.1...1.8.2)
169
-
170
- **Closed issues:**
171
-
172
- - Output should not include security information [\#270](https://github.com/skywinder/github-changelog-generator/issues/270)
173
-
174
- **Merged pull requests:**
175
-
176
- - This PRi will fix \#274. [\#275](https://github.com/skywinder/github-changelog-generator/pull/275) ([skywinder](https://github.com/skywinder))
177
-
178
- ## [1.8.1](https://github.com/skywinder/github-changelog-generator/tree/1.8.1) (2015-08-25)
179
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.0...1.8.1)
180
-
181
- **Implemented enhancements:**
182
-
183
- - Honor labels for Pull Requests [\#266](https://github.com/skywinder/github-changelog-generator/pull/266) ([raphink](https://github.com/raphink))
184
-
185
- **Merged pull requests:**
186
-
187
- - Fix issue with missing events \(in case of events for issue \>30\) [\#268](https://github.com/skywinder/github-changelog-generator/pull/268) ([skywinder](https://github.com/skywinder))
188
- - Use since\_tag as default for older\_tag [\#267](https://github.com/skywinder/github-changelog-generator/pull/267) ([raphink](https://github.com/raphink))
189
-
190
- ## [1.8.0](https://github.com/skywinder/github-changelog-generator/tree/1.8.0) (2015-08-24)
191
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.7.0...1.8.0)
192
-
193
- **Implemented enhancements:**
194
-
195
- - Generate change log since/due specific tag [\#254](https://github.com/skywinder/github-changelog-generator/issues/254)
196
- - Add --base option [\#258](https://github.com/skywinder/github-changelog-generator/pull/258) ([raphink](https://github.com/raphink))
197
-
198
- **Merged pull requests:**
199
-
200
- - Add `--due-tag` option [\#265](https://github.com/skywinder/github-changelog-generator/pull/265) ([skywinder](https://github.com/skywinder))
201
- - Add release\_url to rake task options [\#264](https://github.com/skywinder/github-changelog-generator/pull/264) ([raphink](https://github.com/raphink))
202
- - Add a rake task [\#260](https://github.com/skywinder/github-changelog-generator/pull/260) ([raphink](https://github.com/raphink))
203
- - Add release\_url option [\#259](https://github.com/skywinder/github-changelog-generator/pull/259) ([raphink](https://github.com/raphink))
204
- - Add --since-tag [\#257](https://github.com/skywinder/github-changelog-generator/pull/257) ([raphink](https://github.com/raphink))
205
-
206
- ## [1.7.0](https://github.com/skywinder/github-changelog-generator/tree/1.7.0) (2015-07-16)
207
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.6.2...1.7.0)
208
-
209
- **Implemented enhancements:**
210
-
211
- - Custom header [\#251](https://github.com/skywinder/github-changelog-generator/issues/251)
212
- - Arbitrary templates [\#242](https://github.com/skywinder/github-changelog-generator/issues/242)
213
-
214
- ## [1.6.2](https://github.com/skywinder/github-changelog-generator/tree/1.6.2) (2015-07-16)
215
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.6.1...1.6.2)
216
-
217
- **Fixed bugs:**
218
-
219
- - --unreleased-only broken [\#250](https://github.com/skywinder/github-changelog-generator/issues/250)
220
-
221
- ## [1.6.1](https://github.com/skywinder/github-changelog-generator/tree/1.6.1) (2015-06-12)
222
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.6.0...1.6.1)
223
-
224
- **Implemented enhancements:**
225
-
226
- - Ability to specify custom section header [\#241](https://github.com/skywinder/github-changelog-generator/issues/241)
227
-
228
- **Fixed bugs:**
229
-
230
- - not encapsulated character `\<` [\#249](https://github.com/skywinder/github-changelog-generator/issues/249)
231
-
232
- ## [1.6.0](https://github.com/skywinder/github-changelog-generator/tree/1.6.0) (2015-06-11)
233
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.5.0...1.6.0)
234
-
235
- **Implemented enhancements:**
236
-
237
- - Issues with any label except "bug", "enhancement" should not be excluded by default. [\#240](https://github.com/skywinder/github-changelog-generator/issues/240)
238
- - Add ability to specify custom labels for enhancements & bugfixes [\#54](https://github.com/skywinder/github-changelog-generator/issues/54)
239
-
240
- **Fixed bugs:**
241
-
242
- - --user and --project options are broken [\#246](https://github.com/skywinder/github-changelog-generator/issues/246)
243
- - Exclude and Include tags is broken [\#245](https://github.com/skywinder/github-changelog-generator/issues/245)
244
-
245
- ## [1.5.0](https://github.com/skywinder/github-changelog-generator/tree/1.5.0) (2015-05-26)
246
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.4.1...1.5.0)
247
-
248
- **Implemented enhancements:**
249
-
250
- - Show `Unreleased` section even when there is no tags in repo. [\#228](https://github.com/skywinder/github-changelog-generator/issues/228)
251
- - Add option `--exclude-tags x,y,z` [\#214](https://github.com/skywinder/github-changelog-generator/issues/214)
252
- - Generate change log between 2 specific tags [\#172](https://github.com/skywinder/github-changelog-generator/issues/172)
253
- - Yanked releases support [\#53](https://github.com/skywinder/github-changelog-generator/issues/53)
254
-
255
- **Merged pull requests:**
256
-
257
- - Big refactoring [\#243](https://github.com/skywinder/github-changelog-generator/pull/243) ([skywinder](https://github.com/skywinder))
258
-
259
- ## [1.4.1](https://github.com/skywinder/github-changelog-generator/tree/1.4.1) (2015-05-19)
260
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.4.0...1.4.1)
261
-
262
- **Implemented enhancements:**
263
-
264
- - Trees/Archives with missing change log notes for the current tag. [\#230](https://github.com/skywinder/github-changelog-generator/issues/230)
265
-
266
- **Fixed bugs:**
267
-
268
- - github\_changelog\_generator.rb:220:in ``': No such file or directory - pwd \(Errno::ENOENT\) [\#237](https://github.com/skywinder/github-changelog-generator/issues/237)
269
- - Doesnot generator changelog [\#235](https://github.com/skywinder/github-changelog-generator/issues/235)
270
- - Exclude closed \(not merged\) PR's from changelog. [\#69](https://github.com/skywinder/github-changelog-generator/issues/69)
271
-
272
- **Merged pull requests:**
273
-
274
- - Wrap GitHub requests in function check\_github\_response [\#238](https://github.com/skywinder/github-changelog-generator/pull/238) ([skywinder](https://github.com/skywinder))
275
- - Add fetch token tests [\#236](https://github.com/skywinder/github-changelog-generator/pull/236) ([skywinder](https://github.com/skywinder))
276
- - Add future release option [\#231](https://github.com/skywinder/github-changelog-generator/pull/231) ([sildur](https://github.com/sildur))
277
-
278
- ## [1.4.0](https://github.com/skywinder/github-changelog-generator/tree/1.4.0) (2015-05-07)
279
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.11...1.4.0)
280
-
281
- **Implemented enhancements:**
282
-
283
- - Parsing of existing Change Log file [\#212](https://github.com/skywinder/github-changelog-generator/issues/212)
284
- - Warn users about 0 tags in repo. [\#208](https://github.com/skywinder/github-changelog-generator/issues/208)
285
- - Cleanup [\#220](https://github.com/skywinder/github-changelog-generator/pull/220) ([tuexss](https://github.com/tuexss))
286
-
287
- **Closed issues:**
288
-
289
- - Add CodeClimate and Inch CI [\#219](https://github.com/skywinder/github-changelog-generator/issues/219)
290
-
291
- **Merged pull requests:**
292
-
293
- - Implement fetcher class [\#227](https://github.com/skywinder/github-changelog-generator/pull/227) ([skywinder](https://github.com/skywinder))
294
- - Add coveralls integration [\#223](https://github.com/skywinder/github-changelog-generator/pull/223) ([skywinder](https://github.com/skywinder))
295
- - Rspec & rubocop integration [\#217](https://github.com/skywinder/github-changelog-generator/pull/217) ([skywinder](https://github.com/skywinder))
296
- - Implement Reader class to parse ChangeLog.md [\#216](https://github.com/skywinder/github-changelog-generator/pull/216) ([estahn](https://github.com/estahn))
297
- - Relatively require github\_changelog\_generator library [\#207](https://github.com/skywinder/github-changelog-generator/pull/207) ([sneal](https://github.com/sneal))
298
- - Add --max-issues argument to limit requests [\#76](https://github.com/skywinder/github-changelog-generator/pull/76) ([sneal](https://github.com/sneal))
299
-
300
- ## [1.3.11](https://github.com/skywinder/github-changelog-generator/tree/1.3.11) (2015-03-21)
301
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.10...1.3.11)
302
-
303
- **Merged pull requests:**
304
-
305
- - 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))
306
-
307
- ## [1.3.10](https://github.com/skywinder/github-changelog-generator/tree/1.3.10) (2015-03-18)
308
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.9...1.3.10)
309
-
310
- **Fixed bugs:**
311
-
312
- - 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))
313
-
314
- ## [1.3.9](https://github.com/skywinder/github-changelog-generator/tree/1.3.9) (2015-03-06)
315
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.8...1.3.9)
316
-
317
- **Implemented enhancements:**
318
-
319
- - Improve method of detecting owner and repository [\#63](https://github.com/skywinder/github-changelog-generator/issues/63)
320
-
321
- **Fixed bugs:**
322
-
323
- - Resolved concurrency problem in case of issues \> 2048 [\#65](https://github.com/skywinder/github-changelog-generator/pull/65) ([skywinder](https://github.com/skywinder))
324
-
325
- ## [1.3.8](https://github.com/skywinder/github-changelog-generator/tree/1.3.8) (2015-03-05)
326
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.6...1.3.8)
327
-
328
- ## [1.3.6](https://github.com/skywinder/github-changelog-generator/tree/1.3.6) (2015-03-05)
329
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.5...1.3.6)
330
-
331
- ## [1.3.5](https://github.com/skywinder/github-changelog-generator/tree/1.3.5) (2015-03-04)
332
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.4...1.3.5)
333
-
334
- **Fixed bugs:**
335
-
336
- - Pull Requests in Wrong Tag [\#60](https://github.com/skywinder/github-changelog-generator/issues/60)
337
-
338
- ## [1.3.4](https://github.com/skywinder/github-changelog-generator/tree/1.3.4) (2015-03-03)
339
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.3...1.3.4)
340
-
341
- **Fixed bugs:**
342
-
343
- - --no-issues appears to break PRs [\#59](https://github.com/skywinder/github-changelog-generator/issues/59)
344
-
345
- ## [1.3.3](https://github.com/skywinder/github-changelog-generator/tree/1.3.3) (2015-03-03)
346
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.2...1.3.3)
347
-
348
- **Closed issues:**
349
-
350
- - Add \# character to encapsulate list. [\#58](https://github.com/skywinder/github-changelog-generator/issues/58)
351
-
352
- ## [1.3.2](https://github.com/skywinder/github-changelog-generator/tree/1.3.2) (2015-03-03)
353
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.1...1.3.2)
354
-
355
- **Fixed bugs:**
356
-
357
- - generation failed if github commit api return `404 Not Found` [\#57](https://github.com/skywinder/github-changelog-generator/issues/57)
358
-
359
- ## [1.3.1](https://github.com/skywinder/github-changelog-generator/tree/1.3.1) (2015-02-27)
360
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.3.0...1.3.1)
361
-
362
- ## [1.3.0](https://github.com/skywinder/github-changelog-generator/tree/1.3.0) (2015-02-26)
363
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.8...1.3.0)
364
-
365
- **Implemented enhancements:**
366
-
367
- - Do not show `Unreleased` section, when it's empty. [\#55](https://github.com/skywinder/github-changelog-generator/issues/55)
368
- - Separate list exclude and include labels [\#52](https://github.com/skywinder/github-changelog-generator/issues/52)
369
- - Unreleased issues in separate section [\#47](https://github.com/skywinder/github-changelog-generator/issues/47)
370
- - Separate by lists: Enhancements, Bugs, Pull requests. [\#31](https://github.com/skywinder/github-changelog-generator/issues/31)
371
-
372
- **Fixed bugs:**
373
-
374
- - Pull request with invalid label \(\#26\) in changelog appeared. [\#44](https://github.com/skywinder/github-changelog-generator/issues/44)
375
-
376
- **Merged pull requests:**
377
-
378
- - Implement filtering of Pull Requests by milestones [\#50](https://github.com/skywinder/github-changelog-generator/pull/50) ([skywinder](https://github.com/skywinder))
379
-
380
- ## [1.2.8](https://github.com/skywinder/github-changelog-generator/tree/1.2.8) (2015-02-17)
381
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.7...1.2.8)
382
-
383
- **Closed issues:**
384
-
385
- - Bugs, that closed simultaneously with push not appeared in correct version. [\#37](https://github.com/skywinder/github-changelog-generator/issues/37)
386
-
387
- **Merged pull requests:**
388
-
389
- - Feature/fix 37 [\#49](https://github.com/skywinder/github-changelog-generator/pull/49) ([skywinder](https://github.com/skywinder))
390
- - Prettify output [\#48](https://github.com/skywinder/github-changelog-generator/pull/48) ([skywinder](https://github.com/skywinder))
391
-
392
- ## [1.2.7](https://github.com/skywinder/github-changelog-generator/tree/1.2.7) (2015-01-26)
393
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.6...1.2.7)
394
-
395
- **Implemented enhancements:**
396
-
397
- - Add compare link between older version and newer version [\#46](https://github.com/skywinder/github-changelog-generator/pull/46) ([sue445](https://github.com/sue445))
398
-
399
- ## [1.2.6](https://github.com/skywinder/github-changelog-generator/tree/1.2.6) (2015-01-21)
400
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.5...1.2.6)
401
-
402
- **Merged pull requests:**
403
-
404
- - fix link tag format [\#45](https://github.com/skywinder/github-changelog-generator/pull/45) ([sugamasao](https://github.com/sugamasao))
405
-
406
- ## [1.2.5](https://github.com/skywinder/github-changelog-generator/tree/1.2.5) (2015-01-15)
407
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.4...1.2.5)
408
-
409
- **Implemented enhancements:**
410
-
411
- - Use milestone to specify in which version bug was fixed [\#22](https://github.com/skywinder/github-changelog-generator/issues/22)
412
- - support enterprise github via command line options [\#42](https://github.com/skywinder/github-changelog-generator/pull/42) ([glenlovett](https://github.com/glenlovett))
413
-
414
- **Fixed bugs:**
415
-
416
- - Error when trying to generate log for repo without tags [\#32](https://github.com/skywinder/github-changelog-generator/issues/32)
417
- - PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/skywinder/github-changelog-generator/pull/43) ([schwing](https://github.com/schwing))
418
-
419
- ## [1.2.4](https://github.com/skywinder/github-changelog-generator/tree/1.2.4) (2014-12-16)
420
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.3...1.2.4)
421
-
422
- **Fixed bugs:**
423
-
424
- - Sometimes user is NULL during merges [\#41](https://github.com/skywinder/github-changelog-generator/issues/41)
425
- - Crash when try generate log for rails [\#35](https://github.com/skywinder/github-changelog-generator/issues/35)
426
-
427
- ## [1.2.3](https://github.com/skywinder/github-changelog-generator/tree/1.2.3) (2014-12-16)
428
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.2...1.2.3)
429
-
430
- **Implemented enhancements:**
431
-
432
- - Add ability to run with one parameter instead -u -p [\#38](https://github.com/skywinder/github-changelog-generator/issues/38)
433
- - Detailed output [\#33](https://github.com/skywinder/github-changelog-generator/issues/33)
434
-
435
- **Fixed bugs:**
436
-
437
- - Docs lacking or basic behavior not as advertised [\#30](https://github.com/skywinder/github-changelog-generator/issues/30)
438
-
439
- **Merged pull requests:**
440
-
441
- - Implement async fetching [\#39](https://github.com/skywinder/github-changelog-generator/pull/39) ([skywinder](https://github.com/skywinder))
442
- - Fix crash when user is NULL [\#40](https://github.com/skywinder/github-changelog-generator/pull/40) ([skywinder](https://github.com/skywinder))
443
-
444
- ## [1.2.2](https://github.com/skywinder/github-changelog-generator/tree/1.2.2) (2014-12-10)
445
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.1...1.2.2)
446
-
447
- **Fixed bugs:**
448
-
449
- - Encapsulate \[ \> \* \_ \ \] signs in issues names [\#34](https://github.com/skywinder/github-changelog-generator/issues/34)
450
-
451
- **Merged pull requests:**
452
-
453
- - Add a Bitdeli Badge to README [\#36](https://github.com/skywinder/github-changelog-generator/pull/36) ([bitdeli-chef](https://github.com/bitdeli-chef))
454
-
455
- ## [1.2.1](https://github.com/skywinder/github-changelog-generator/tree/1.2.1) (2014-11-22)
456
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.0...1.2.1)
457
-
458
- **Fixed bugs:**
459
-
460
- - Script fills changelog only for first 30 tags. [\#20](https://github.com/skywinder/github-changelog-generator/issues/20)
461
-
462
- **Merged pull requests:**
463
-
464
- - Issues for last tag not in list [\#29](https://github.com/skywinder/github-changelog-generator/pull/29) ([skywinder](https://github.com/skywinder))
465
- - Disable default --filter-pull-requests option. [\#28](https://github.com/skywinder/github-changelog-generator/pull/28) ([skywinder](https://github.com/skywinder))
466
-
467
- ## [1.2.0](https://github.com/skywinder/github-changelog-generator/tree/1.2.0) (2014-11-19)
468
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.4...1.2.0)
469
-
470
- **Merged pull requests:**
471
-
472
- - 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))
473
- - 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))
474
- - 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))
475
-
476
- ## [1.1.4](https://github.com/skywinder/github-changelog-generator/tree/1.1.4) (2014-11-18)
477
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.2...1.1.4)
478
-
479
- **Implemented enhancements:**
480
-
481
- - 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)
482
-
483
- **Merged pull requests:**
484
-
485
- - Sort tags by date [\#23](https://github.com/skywinder/github-changelog-generator/pull/23) ([skywinder](https://github.com/skywinder))
486
-
487
- ## [1.1.2](https://github.com/skywinder/github-changelog-generator/tree/1.1.2) (2014-11-12)
488
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.1...1.1.2)
489
-
490
- **Merged pull requests:**
491
-
492
- - Fix bug with dot signs in project name [\#18](https://github.com/skywinder/github-changelog-generator/pull/18) ([skywinder](https://github.com/skywinder))
493
- - Fix bug with dot signs in user name [\#17](https://github.com/skywinder/github-changelog-generator/pull/17) ([skywinder](https://github.com/skywinder))
494
-
495
- ## [1.1.1](https://github.com/skywinder/github-changelog-generator/tree/1.1.1) (2014-11-10)
496
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.1.0...1.1.1)
497
-
498
- **Merged pull requests:**
499
-
500
- - 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))
501
- - Sort issues by tags [\#14](https://github.com/skywinder/github-changelog-generator/pull/14) ([skywinder](https://github.com/skywinder))
502
- - 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))
503
-
504
- ## [1.1.0](https://github.com/skywinder/github-changelog-generator/tree/1.1.0) (2014-11-10)
505
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.0.1...1.1.0)
506
-
507
- **Implemented enhancements:**
508
-
509
- - Detect username and project form origin [\#11](https://github.com/skywinder/github-changelog-generator/issues/11)
510
-
511
- **Fixed bugs:**
512
-
513
- - Bug with wrong credentials in 1.0.1 [\#12](https://github.com/skywinder/github-changelog-generator/issues/12)
514
- - Markdown formating in the last line wrong [\#9](https://github.com/skywinder/github-changelog-generator/issues/9)
515
-
516
- ## [1.0.1](https://github.com/skywinder/github-changelog-generator/tree/1.0.1) (2014-11-10)
517
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.0.0...1.0.1)
518
-
519
- ## [1.0.0](https://github.com/skywinder/github-changelog-generator/tree/1.0.0) (2014-11-07)
520
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/0.1.0...1.0.0)
521
-
522
- **Implemented enhancements:**
523
-
524
- - Add support for fixed issues and implemented enchanments. [\#6](https://github.com/skywinder/github-changelog-generator/issues/6)
525
- - Implement option to specify output filename [\#4](https://github.com/skywinder/github-changelog-generator/issues/4)
526
- - Implement support of different tags. [\#8](https://github.com/skywinder/github-changelog-generator/pull/8) ([skywinder](https://github.com/skywinder))
527
-
528
- **Fixed bugs:**
529
-
530
- - Last tag not appeared in changelog [\#5](https://github.com/skywinder/github-changelog-generator/issues/5)
531
-
532
- **Merged pull requests:**
533
-
534
- - Add support for issues in CHANGELOG [\#7](https://github.com/skywinder/github-changelog-generator/pull/7) ([skywinder](https://github.com/skywinder))
535
-
536
- ## [0.1.0](https://github.com/skywinder/github-changelog-generator/tree/0.1.0) (2014-11-07)
537
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/0.0.2...0.1.0)
538
-
539
- **Merged pull requests:**
540
-
541
- - Fix parsing date of pull request [\#3](https://github.com/skywinder/github-changelog-generator/pull/3) ([skywinder](https://github.com/skywinder))
542
- - Add changelog generation for last tag [\#2](https://github.com/skywinder/github-changelog-generator/pull/2) ([skywinder](https://github.com/skywinder))
543
- - 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))
544
-
545
- ## [0.0.2](https://github.com/skywinder/github-changelog-generator/tree/0.0.2) (2014-11-06)
546
- [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/0.0.1...0.0.2)
547
-
548
- ## [0.0.1](https://github.com/skywinder/github-changelog-generator/tree/0.0.1) (2014-11-06)
549
-
550
-
551
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
data/Gemfile DELETED
@@ -1,13 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- gemspec
4
-
5
- group :test do
6
- gem "rake"
7
- gem "bundler"
8
- gem "rubocop"
9
- gem "overcommit"
10
- gem "coveralls", "~>0.8", require: false
11
- gem "simplecov", "~>0.10", require: false
12
- gem "codeclimate-test-reporter", "~>0.4"
13
- end
@@ -1,111 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- github_changelog_generator (1.11.7)
5
- bundler (>= 1.7)
6
- colorize (~> 0.7)
7
- github_api (~> 0.12)
8
- overcommit (>= 0.31)
9
- rake (>= 10.0)
10
- rspec (>= 3.2)
11
- rubocop (>= 0.31)
12
-
13
- GEM
14
- remote: https://rubygems.org/
15
- specs:
16
- addressable (2.4.0)
17
- ast (2.2.0)
18
- childprocess (0.5.9)
19
- ffi (~> 1.0, >= 1.0.11)
20
- codeclimate-test-reporter (0.4.8)
21
- simplecov (>= 0.7.1, < 1.0.0)
22
- colorize (0.7.7)
23
- coveralls (0.8.11)
24
- json (~> 1.8)
25
- simplecov (~> 0.11.0)
26
- term-ansicolor (~> 1.3)
27
- thor (~> 0.19.1)
28
- tins (~> 1.6.0)
29
- descendants_tracker (0.0.4)
30
- thread_safe (~> 0.3, >= 0.3.1)
31
- diff-lcs (1.2.5)
32
- docile (1.1.5)
33
- faraday (0.9.2)
34
- multipart-post (>= 1.2, < 3)
35
- ffi (1.9.10)
36
- github_api (0.13.1)
37
- addressable (~> 2.4.0)
38
- descendants_tracker (~> 0.0.4)
39
- faraday (~> 0.8, < 0.10)
40
- hashie (>= 3.4)
41
- multi_json (>= 1.7.5, < 2.0)
42
- oauth2
43
- hashie (3.4.3)
44
- iniparse (1.4.2)
45
- json (1.8.3)
46
- jwt (1.5.1)
47
- multi_json (1.11.2)
48
- multi_xml (0.5.5)
49
- multipart-post (2.0.0)
50
- oauth2 (1.1.0)
51
- faraday (>= 0.8, < 0.10)
52
- jwt (~> 1.0, < 1.5.2)
53
- multi_json (~> 1.3)
54
- multi_xml (~> 0.5)
55
- rack (>= 1.2, < 3)
56
- overcommit (0.32.0)
57
- childprocess (~> 0.5.8)
58
- iniparse (~> 1.4)
59
- parser (2.3.0.6)
60
- ast (~> 2.2)
61
- powerpack (0.1.1)
62
- rack (1.6.4)
63
- rainbow (2.1.0)
64
- rake (10.5.0)
65
- rspec (3.4.0)
66
- rspec-core (~> 3.4.0)
67
- rspec-expectations (~> 3.4.0)
68
- rspec-mocks (~> 3.4.0)
69
- rspec-core (3.4.3)
70
- rspec-support (~> 3.4.0)
71
- rspec-expectations (3.4.0)
72
- diff-lcs (>= 1.2.0, < 2.0)
73
- rspec-support (~> 3.4.0)
74
- rspec-mocks (3.4.1)
75
- diff-lcs (>= 1.2.0, < 2.0)
76
- rspec-support (~> 3.4.0)
77
- rspec-support (3.4.1)
78
- rubocop (0.37.2)
79
- parser (>= 2.3.0.4, < 3.0)
80
- powerpack (~> 0.1)
81
- rainbow (>= 1.99.1, < 3.0)
82
- ruby-progressbar (~> 1.7)
83
- unicode-display_width (~> 0.3)
84
- ruby-progressbar (1.7.5)
85
- simplecov (0.11.2)
86
- docile (~> 1.1.0)
87
- json (~> 1.8)
88
- simplecov-html (~> 0.10.0)
89
- simplecov-html (0.10.0)
90
- term-ansicolor (1.3.2)
91
- tins (~> 1.0)
92
- thor (0.19.1)
93
- thread_safe (0.3.5)
94
- tins (1.6.0)
95
- unicode-display_width (0.3.1)
96
-
97
- PLATFORMS
98
- ruby
99
-
100
- DEPENDENCIES
101
- bundler
102
- codeclimate-test-reporter (~> 0.4)
103
- coveralls (~> 0.8)
104
- github_changelog_generator!
105
- overcommit
106
- rake
107
- rubocop
108
- simplecov (~> 0.10)
109
-
110
- BUNDLED WITH
111
- 1.11.2
@@ -1,33 +0,0 @@
1
- # coding: utf-8
2
- lib = File.expand_path("../lib", __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
- require "github_changelog_generator/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "github_changelog_generator"
8
- spec.version = GitHubChangelogGenerator::VERSION
9
- spec.default_executable = "github_changelog_generator"
10
-
11
- spec.required_ruby_version = ">= 1.9.3"
12
- spec.authors = ["Petr Korolev", "Olle Jonsson"]
13
- spec.email = "sky4winder+github_changelog_generator@gmail.com"
14
-
15
- spec.summary = "Script, that automatically generate changelog from your tags, issues, labels and pull requests."
16
- spec.description = "Changelog generation has never been so easy. Fully automate changelog generation - this gem generate change log file based on tags, issues and merged pull requests from Github issue tracker."
17
- spec.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
18
- spec.license = "MIT"
19
- spec.extensions = ["Rakefile"]
20
-
21
- spec.files = `git ls-files -z`.split("\x0")
22
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
23
- spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
24
- spec.require_paths = ["lib"]
25
-
26
- spec.add_runtime_dependency "rake", ">= 10.0"
27
- spec.add_runtime_dependency "bundler", ">= 1.7"
28
- spec.add_runtime_dependency("github_api", ["~> 0.12"])
29
- spec.add_runtime_dependency("colorize", ["~> 0.7"])
30
- spec.add_runtime_dependency("overcommit", ">= 0.31")
31
- spec.add_runtime_dependency("rubocop", ">= 0.31")
32
- spec.add_runtime_dependency("rspec", ">= 3.2")
33
- end
Binary file
@@ -1 +0,0 @@
1
- exclude-labels=73a91042-da6f-11e5-9335-1040f38d7f90,7adf83b4-da6f-11e5-ae18-1040f38d7f90
File without changes
@@ -1,2 +0,0 @@
1
- unreleased_label: staging
2
- unreleased: false
@@ -1,3 +0,0 @@
1
- unreleased_label=staging
2
- unreleased=false
3
- header==== Changelog ===