github_changelog_generator 1.11.2 → 1.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/Gemfile.lock +1 -1
- data/github_changelog_generator.gemspec +1 -1
- data/lib/github_changelog_generator/version.rb +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65ee8808245b1e62acdf99136db788900bb7d759
|
|
4
|
+
data.tar.gz: 19567ce6d79a4b9a703dd1155d58cf2b7eaf2c29
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4f006e450a0bf80f42a1ea20b9d6768e80c2e6a6338666ab18f018e394a48dcfdd01e82563fdadab86077b7600918827f02ac38c5076031809f069beb1516b5
|
|
7
|
+
data.tar.gz: 2283d643830b9a55221105ce0daa62cb7a66aa81ca85ffcbb4befba34c987b38b431dc3dd22b722ac22d32590e18a9ce2f2c9c7030a175188b05fbd5420478b7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.11.2](https://github.com/skywinder/github-changelog-generator/tree/1.11.2) (2016-02-25)
|
|
4
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.1...1.11.2)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- Getting an error on install [\#329](https://github.com/skywinder/github-changelog-generator/issues/329)
|
|
9
|
+
|
|
10
|
+
**Merged pull requests:**
|
|
11
|
+
|
|
12
|
+
- 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))
|
|
13
|
+
|
|
3
14
|
## [1.11.1](https://github.com/skywinder/github-changelog-generator/tree/1.11.1) (2016-02-25)
|
|
4
15
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.0...1.11.1)
|
|
5
16
|
|
data/Gemfile.lock
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
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."
|
|
18
18
|
spec.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
|
|
19
19
|
spec.license = "MIT"
|
|
20
|
-
spec.extensions = ["Rakefile"]
|
|
20
|
+
#spec.extensions = ["Rakefile"]
|
|
21
21
|
|
|
22
22
|
spec.files = `git ls-files -z`.split("\x0")
|
|
23
23
|
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
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.
|
|
4
|
+
version: 1.11.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Petr Korolev
|
|
@@ -115,8 +115,7 @@ email: sky4winder+github_changelog_generator@gmail.com
|
|
|
115
115
|
executables:
|
|
116
116
|
- git-generate-changelog
|
|
117
117
|
- github_changelog_generator
|
|
118
|
-
extensions:
|
|
119
|
-
- Rakefile
|
|
118
|
+
extensions: []
|
|
120
119
|
extra_rdoc_files: []
|
|
121
120
|
files:
|
|
122
121
|
- ".coveralls.yml"
|
|
@@ -187,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
186
|
version: '0'
|
|
188
187
|
requirements: []
|
|
189
188
|
rubyforge_project:
|
|
190
|
-
rubygems_version: 2.4.
|
|
189
|
+
rubygems_version: 2.4.3
|
|
191
190
|
signing_key:
|
|
192
191
|
specification_version: 4
|
|
193
192
|
summary: Script, that automatically generate changelog from your tags, issues, labels
|