Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
542a0948fc | ||
|
|
aaa71d1ed0 | ||
|
|
11ea9eccb1 | ||
|
|
7ab1ee1c21 | ||
|
|
6fa2f2701e | ||
|
|
2bdaf31da7 | ||
|
|
6e8a9cb6ce | ||
|
|
867337b58e | ||
|
|
4687b0b025 | ||
|
|
eca1ffa418 | ||
|
|
7d92087f4a | ||
|
|
f1a6a79865 | ||
|
|
5b46a24f0b | ||
|
|
2a1e7daa1d | ||
|
|
c76cfd1920 | ||
|
|
d3ea8a1b0c | ||
|
|
7ea80547c5 | ||
|
|
b4dcd8a0d9 | ||
|
|
3d13f9c4b3 |
18
.travis.yml
18
.travis.yml
@@ -1,16 +1,22 @@
|
|||||||
sudo: false
|
sudo: false
|
||||||
language: ruby
|
language: ruby
|
||||||
before_install:
|
before_install:
|
||||||
- gem update --system
|
- gem update --system
|
||||||
- gem install bundler
|
- gem install bundler
|
||||||
rvm:
|
rvm:
|
||||||
- 2.1.0
|
- 2.1.0
|
||||||
script:
|
script: bundle exec rake checks
|
||||||
- bundle exec rake checks
|
matrix:
|
||||||
|
include:
|
||||||
|
# Test install on clean system
|
||||||
|
- install: true
|
||||||
|
script:
|
||||||
|
- gem build github_changelog_generator
|
||||||
|
- gem install *.gem
|
||||||
notifications:
|
notifications:
|
||||||
email:
|
email:
|
||||||
recipients:
|
recipients:
|
||||||
- sky4winder+githubchangeloggenerator@gmail.com
|
- sky4winder+githubchangeloggenerator@gmail.com
|
||||||
on_success: never
|
on_success: never
|
||||||
on_failure: change
|
on_failure: change
|
||||||
addons:
|
addons:
|
||||||
|
|||||||
15
CHANGELOG.md
15
CHANGELOG.md
@@ -1,5 +1,20 @@
|
|||||||
# Change Log
|
# Change Log
|
||||||
|
|
||||||
|
## [1.11.5](https://github.com/skywinder/github-changelog-generator/tree/1.11.5) (2016-03-01)
|
||||||
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.4...1.11.5)
|
||||||
|
|
||||||
|
**Merged pull requests:**
|
||||||
|
|
||||||
|
- Test clean install in Travis [\#344](https://github.com/skywinder/github-changelog-generator/pull/344) ([jkeiser](https://github.com/jkeiser))
|
||||||
|
- Update Rakefile to avoid install-breaking bug [\#341](https://github.com/skywinder/github-changelog-generator/pull/341) ([olleolleolle](https://github.com/olleolleolle))
|
||||||
|
|
||||||
|
## [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)
|
## [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)
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.2...1.11.3)
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
github_changelog_generator (1.11.3)
|
github_changelog_generator (1.11.5)
|
||||||
bundler (>= 1.7)
|
bundler (>= 1.7)
|
||||||
colorize (~> 0.7)
|
colorize (~> 0.7)
|
||||||
github_api (~> 0.12)
|
github_api (~> 0.12)
|
||||||
|
|||||||
4
Rakefile
4
Rakefile
@@ -16,14 +16,14 @@ task :copy_man_page_to_manpath do |_t|
|
|||||||
path.file? && path.readable?
|
path.file? && path.readable?
|
||||||
end
|
end
|
||||||
|
|
||||||
return unless manpath
|
next unless manpath
|
||||||
|
|
||||||
writable_man_path = Pathname(manpath).each_line.find do |line|
|
writable_man_path = Pathname(manpath).each_line.find do |line|
|
||||||
path = Pathname(line.chomp)
|
path = Pathname(line.chomp)
|
||||||
path.directory? && path.writable?
|
path.directory? && path.writable?
|
||||||
end
|
end
|
||||||
|
|
||||||
return unless writable_man_path
|
next unless writable_man_path
|
||||||
|
|
||||||
man_prefix = Pathname("#{writable_man_path.chomp}/man1")
|
man_prefix = Pathname("#{writable_man_path.chomp}/man1")
|
||||||
man_pages = "man/git-*.1"
|
man_pages = "man/git-*.1"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
|
require "date"
|
||||||
lib = File.expand_path("../lib", __FILE__)
|
lib = File.expand_path("../lib", __FILE__)
|
||||||
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
||||||
require "github_changelog_generator/version"
|
require "github_changelog_generator/version"
|
||||||
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|||||||
spec.required_ruby_version = ">= 1.9.3"
|
spec.required_ruby_version = ">= 1.9.3"
|
||||||
spec.authors = ["Petr Korolev"]
|
spec.authors = ["Petr Korolev"]
|
||||||
spec.email = "sky4winder+github_changelog_generator@gmail.com"
|
spec.email = "sky4winder+github_changelog_generator@gmail.com"
|
||||||
spec.date = `date +"%Y-%m-%d"`.strip!
|
spec.date = Date.today.iso8601
|
||||||
spec.summary = "Script, that automatically generate changelog from your tags, issues, labels and pull requests."
|
spec.summary = "Script, that automatically generate changelog from your tags, issues, labels and pull requests."
|
||||||
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.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.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
module GitHubChangelogGenerator
|
module GitHubChangelogGenerator
|
||||||
VERSION = "1.11.4"
|
VERSION = "1.11.6"
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user