Compare commits

...

10 Commits

Author SHA1 Message Date
Petr Korolev
4687b0b025 Merge branch 'release/1.11.5' 2016-03-01 11:19:06 +02:00
Petr Korolev
eca1ffa418 Update gemspec to version 1.11.5 2016-03-01 11:19:03 +02:00
Olle Jonsson
7d92087f4a Merge pull request #341 from skywinder/Fix/return-not-allowed-in-block
Update Rakefile to avoid install-breaking bug
2016-02-29 17:34:52 +01:00
Olle Jonsson
f1a6a79865 Merge pull request #344 from jkeiser/jk/travis-clean-install
Test clean install in Travis
2016-02-29 17:33:49 +01:00
John Keiser
5b46a24f0b Test clean install in Travis 2016-02-29 08:27:30 -08:00
Olle Jonsson
c76cfd1920 Update Rakefile 2016-02-28 22:13:23 +01:00
Petr Korolev
d3ea8a1b0c Merge branch 'hotfix/update-changelog' into develop 2016-02-26 13:18:58 +02:00
Petr Korolev
7ea80547c5 Merge branch 'hotfix/update-changelog' 2016-02-26 13:18:58 +02:00
Petr Korolev
b4dcd8a0d9 Update changelog for version 1.11.4 2016-02-26 13:18:56 +02:00
Petr Korolev
3d13f9c4b3 Merge branch 'release/1.11.4' into develop 2016-02-26 13:18:14 +02:00
5 changed files with 24 additions and 11 deletions

View File

@@ -1,16 +1,22 @@
sudo: false
language: ruby
before_install:
- gem update --system
- gem install bundler
before_install:
- gem update --system
- gem install bundler
rvm:
- 2.1.0
script:
- bundle exec rake checks
- 2.1.0
script: bundle exec rake checks
matrix:
include:
# Test install on clean system
- install: true
script:
- gem build github_changelog_generator
- gem install *.gem
notifications:
email:
recipients:
- sky4winder+githubchangeloggenerator@gmail.com
- sky4winder+githubchangeloggenerator@gmail.com
on_success: never
on_failure: change
addons:

View File

@@ -1,5 +1,12 @@
# Change Log
## [1.11.4](https://github.com/skywinder/github-changelog-generator/tree/1.11.4) (2016-02-26)
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.3...1.11.4)
**Merged pull requests:**
- Man page copying: only copy .1 [\#338](https://github.com/skywinder/github-changelog-generator/pull/338) ([olleolleolle](https://github.com/olleolleolle))
## [1.11.3](https://github.com/skywinder/github-changelog-generator/tree/1.11.3) (2016-02-25)
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.2...1.11.3)

View File

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

View File

@@ -16,14 +16,14 @@ task :copy_man_page_to_manpath do |_t|
path.file? && path.readable?
end
return unless manpath
next unless manpath
writable_man_path = Pathname(manpath).each_line.find do |line|
path = Pathname(line.chomp)
path.directory? && path.writable?
end
return unless writable_man_path
next unless writable_man_path
man_prefix = Pathname("#{writable_man_path.chomp}/man1")
man_pages = "man/git-*.1"

View File

@@ -1,3 +1,3 @@
module GitHubChangelogGenerator
VERSION = "1.11.4"
VERSION = "1.11.5"
end