Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
901c5ffba3 | ||
|
|
89ddb6291a | ||
|
|
65594a63c0 | ||
|
|
3a41f22339 | ||
|
|
a139eff84b | ||
|
|
95d4e49171 | ||
|
|
402e70f677 | ||
|
|
5b192f9e43 | ||
|
|
1167706335 | ||
|
|
63c70edb25 | ||
|
|
0b3e8429c4 | ||
|
|
20c22defc2 | ||
|
|
bc6bfac2a3 | ||
|
|
fb502c0ac7 | ||
|
|
575f42f652 | ||
|
|
92fbf47960 | ||
|
|
32ab582797 | ||
|
|
06585b1c69 | ||
|
|
4ceb065cae | ||
|
|
cf55352620 | ||
|
|
540251ab60 | ||
|
|
74f93460bc | ||
|
|
b8f7dbaa2e | ||
|
|
74655cce06 | ||
|
|
bc13534d88 | ||
|
|
e27a471fc8 | ||
|
|
af90816a96 | ||
|
|
1f330a3c18 | ||
|
|
0627b6c701 | ||
|
|
bfdb5debec | ||
|
|
e871613d62 | ||
|
|
589dc13938 | ||
|
|
9a842dae26 | ||
|
|
bf84a6b479 | ||
|
|
843470273c |
23
CHANGELOG.md
23
CHANGELOG.md
@@ -1,10 +1,25 @@
|
||||
# Change Log
|
||||
|
||||
## [v1.11.0](https://github.com/skywinder/github-changelog-generator/tree/v1.11.0) (2016-02-23)
|
||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.1...v1.11.0)
|
||||
## [1.10.4](https://github.com/skywinder/github-changelog-generator/tree/1.10.4) (2016-02-24)
|
||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.3...1.10.4)
|
||||
|
||||
## [1.11.1](https://github.com/skywinder/github-changelog-generator/tree/1.11.1) (2016-02-23)
|
||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.1...1.11.1)
|
||||
**Fixed bugs:**
|
||||
|
||||
- Rake and Bundler as runtime deps [\#333](https://github.com/skywinder/github-changelog-generator/pull/333) ([olleolleolle](https://github.com/olleolleolle))
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Test case for \#327 [\#331](https://github.com/skywinder/github-changelog-generator/pull/331) ([olleolleolle](https://github.com/olleolleolle))
|
||||
- Fix crash installing on systems without overcommit [\#330](https://github.com/skywinder/github-changelog-generator/pull/330) ([jkeiser](https://github.com/jkeiser))
|
||||
|
||||
## [1.10.3](https://github.com/skywinder/github-changelog-generator/tree/1.10.3) (2016-02-23)
|
||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.2...1.10.3)
|
||||
|
||||
## [1.10.2](https://github.com/skywinder/github-changelog-generator/tree/1.10.2) (2016-02-23)
|
||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/v1.11.0...1.10.2)
|
||||
|
||||
## [v1.11.0](https://github.com/skywinder/github-changelog-generator/tree/v1.11.0) (2016-02-23)
|
||||
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.10.1...v1.11.0)
|
||||
|
||||
**Implemented enhancements:**
|
||||
|
||||
|
||||
1
Gemfile
1
Gemfile
@@ -8,5 +8,4 @@ group :test do
|
||||
gem "coveralls", "~>0.8", require: false
|
||||
gem "simplecov", "~>0.10", require: false
|
||||
gem "codeclimate-test-reporter", "~>0.4"
|
||||
gem "overcommit", "~>0.31"
|
||||
end
|
||||
|
||||
@@ -1,9 +1,12 @@
|
||||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
github_changelog_generator (1.10.1)
|
||||
github_changelog_generator (1.10.4)
|
||||
bundler (~> 1.7)
|
||||
colorize (~> 0.7)
|
||||
github_api (~> 0.12)
|
||||
overcommit (~> 0.31)
|
||||
rake (~> 10.0)
|
||||
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
@@ -93,12 +96,9 @@ PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
bundler (~> 1.7)
|
||||
codeclimate-test-reporter (~> 0.4)
|
||||
coveralls (~> 0.8)
|
||||
github_changelog_generator!
|
||||
overcommit (~> 0.31)
|
||||
rake (~> 10.0)
|
||||
rspec (~> 3.2)
|
||||
rubocop (~> 0.31)
|
||||
simplecov (~> 0.10)
|
||||
|
||||
1
Rakefile
1
Rakefile
@@ -1,3 +1,4 @@
|
||||
require "bundler"
|
||||
require "bundler/gem_tasks"
|
||||
require "rubocop/rake_task"
|
||||
require "rspec/core/rake_task"
|
||||
|
||||
@@ -17,17 +17,16 @@ Gem::Specification.new do |spec|
|
||||
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."
|
||||
spec.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
|
||||
spec.license = "MIT"
|
||||
spec.extensions = ["Rakefile"]
|
||||
# spec.extensions = ["Rakefile"]
|
||||
|
||||
spec.files = `git ls-files -z`.split("\x0")
|
||||
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||
spec.require_paths = ["lib"]
|
||||
|
||||
spec.add_runtime_dependency "rake", "~> 10.0"
|
||||
spec.add_runtime_dependency "bundler", "~> 1.7"
|
||||
spec.add_runtime_dependency("github_api", ["~> 0.12"])
|
||||
spec.add_runtime_dependency("colorize", ["~> 0.7"])
|
||||
|
||||
# Development only
|
||||
spec.add_development_dependency "bundler", "~> 1.7"
|
||||
spec.add_development_dependency "rake", "~> 10.0"
|
||||
spec.add_runtime_dependency("overcommit", "~>0.31")
|
||||
end
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
module GitHubChangelogGenerator
|
||||
VERSION = "1.10.2"
|
||||
VERSION = "1.10.5"
|
||||
end
|
||||
|
||||
1
spec/files/github_changelog_params_327
Normal file
1
spec/files/github_changelog_params_327
Normal file
@@ -0,0 +1 @@
|
||||
exclude-labels=73a91042-da6f-11e5-9335-1040f38d7f90,7adf83b4-da6f-11e5-ae18-1040f38d7f90
|
||||
@@ -23,11 +23,11 @@ require "coveralls"
|
||||
module SpecHelper
|
||||
end
|
||||
|
||||
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
|
||||
SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter.new([
|
||||
Coveralls::SimpleCov::Formatter,
|
||||
SimpleCov::Formatter::HTMLFormatter,
|
||||
CodeClimate::TestReporter::Formatter
|
||||
]
|
||||
])
|
||||
SimpleCov.start
|
||||
|
||||
require "github_changelog_generator"
|
||||
|
||||
@@ -36,6 +36,20 @@ describe GitHubChangelogGenerator::ParserFile do
|
||||
unreleased: false,
|
||||
header: "=== Changelog ==="))
|
||||
end
|
||||
|
||||
context "turns exclude-labels into an Array", bug: '#327' do
|
||||
let(:options) do
|
||||
{
|
||||
params_file: "spec/files/github_changelog_params_327"
|
||||
}
|
||||
end
|
||||
it "reads exclude_labels into an Array" do
|
||||
pending("Related with Bug #327.")
|
||||
expect { parse.parse! }.to change { options[:exclude_labels] }
|
||||
.from(nil)
|
||||
.to(["73a91042-da6f-11e5-9335-1040f38d7f90", "7adf83b4-da6f-11e5-ae18-1040f38d7f90"])
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user