Compare commits

...

16 Commits

Author SHA1 Message Date
Petr Korolev
901c5ffba3 Merge branch 'release/1.10.5' 2016-02-24 15:56:43 +02:00
Petr Korolev
89ddb6291a Update gemspec to version 1.10.5 2016-02-24 15:56:40 +02:00
Petr Korolev
65594a63c0 should fix #329 2016-02-24 15:56:09 +02:00
Petr Korolev
3a41f22339 Merge branch 'hotfix/update-changelog' into develop 2016-02-24 15:14:20 +02:00
Petr Korolev
a139eff84b Merge branch 'hotfix/update-changelog' 2016-02-24 15:14:19 +02:00
Petr Korolev
95d4e49171 Update changelog for version 1.10.4 2016-02-24 15:14:16 +02:00
Petr Korolev
5b192f9e43 Merge branch 'release/1.10.4' 2016-02-24 15:13:14 +02:00
Petr Korolev
32ab582797 Merge pull request #333 from skywinder/feature/bug-329-promote-rake-and-bundler-to-runtime-deps
Rake and Bundler as runtime deps
2016-02-24 14:56:50 +02:00
Olle Jonsson
06585b1c69 Rake and Bundler as runtime deps
To support Rakefile running at install. See #329
2016-02-23 23:39:53 +01:00
Petr Korolev
4ceb065cae Merge pull request #331 from olleolleolle/feature/bug-327
Test case for #327
2016-02-23 23:56:34 +02:00
Petr Korolev
cf55352620 Merge pull request #330 from jkeiser/jk/rakefile-dep
Fix crash installing on systems without overcommit
2016-02-23 23:48:20 +02:00
Olle Jonsson
540251ab60 Typo 2016-02-23 22:28:24 +01:00
Olle Jonsson
74f93460bc Spec: Avoid a deprecation 2016-02-23 22:25:07 +01:00
Olle Jonsson
b8f7dbaa2e Test case for #327 2016-02-23 22:24:10 +01:00
John Keiser
74655cce06 If Rakefile is an extension, any requires are runtime deps 2016-02-23 12:25:59 -08:00
Petr Korolev
e27a471fc8 Merge branch 'hotfix/update-changelog' 2016-02-23 17:46:04 +02:00
4 changed files with 14 additions and 6 deletions

View File

@@ -1,11 +1,19 @@
# Change Log
## [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.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)
**Fixed bugs:**
- Getting an error on install [\#329](https://github.com/skywinder/github-changelog-generator/issues/329)
- 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)

View File

@@ -1,7 +1,7 @@
PATH
remote: .
specs:
github_changelog_generator (1.10.3)
github_changelog_generator (1.10.4)
bundler (~> 1.7)
colorize (~> 0.7)
github_api (~> 0.12)

View File

@@ -17,7 +17,7 @@ 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) }

View File

@@ -1,3 +1,3 @@
module GitHubChangelogGenerator
VERSION = "1.10.4"
VERSION = "1.10.5"
end