github_changelog_generator 1.11.6 → 1.11.7
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 +15 -0
- data/Gemfile.lock +1 -1
- data/github_changelog_generator.gemspec +2 -3
- data/lib/github_changelog_generator/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 327a89f46c6f1cb1cf698203f99a317f100e9541
|
|
4
|
+
data.tar.gz: b31435a27d58d5516dde771b0ab4af1cca0cc6df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e4f6357d231b8812689716e5e7815365c7cb48fd090d8e4b2a01bbe3c82634e60316d0de8985e1a37708411c5bc09d52be0d799b9263db820174404116d2118
|
|
7
|
+
data.tar.gz: de2defe69cfbecc5f7d8b840ae3f125369c5398fd5b9b6390f289cc71c39b388b122b9a7f7f6307e93f7a6d0a4672752d573df73438a1a01a0f85ff02876aa9d
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.11.6](https://github.com/skywinder/github-changelog-generator/tree/1.11.6) (2016-03-01)
|
|
4
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.5...1.11.6)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- Can't build on Windows [\#340](https://github.com/skywinder/github-changelog-generator/issues/340)
|
|
9
|
+
|
|
10
|
+
**Closed issues:**
|
|
11
|
+
|
|
12
|
+
- install error "Not a git repository" [\#339](https://github.com/skywinder/github-changelog-generator/issues/339)
|
|
13
|
+
|
|
14
|
+
**Merged pull requests:**
|
|
15
|
+
|
|
16
|
+
- Gemspec: Calculate date using Date stdlib [\#343](https://github.com/skywinder/github-changelog-generator/pull/343) ([olleolleolle](https://github.com/olleolleolle))
|
|
17
|
+
|
|
3
18
|
## [1.11.5](https://github.com/skywinder/github-changelog-generator/tree/1.11.5) (2016-03-01)
|
|
4
19
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.11.4...1.11.5)
|
|
5
20
|
|
data/Gemfile.lock
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
# coding: utf-8
|
|
2
|
-
|
|
3
2
|
lib = File.expand_path("../lib", __FILE__)
|
|
4
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
5
4
|
require "github_changelog_generator/version"
|
|
@@ -10,9 +9,9 @@ Gem::Specification.new do |spec|
|
|
|
10
9
|
spec.default_executable = "github_changelog_generator"
|
|
11
10
|
|
|
12
11
|
spec.required_ruby_version = ">= 1.9.3"
|
|
13
|
-
spec.authors = ["Petr Korolev"]
|
|
12
|
+
spec.authors = ["Petr Korolev", "Olle Jonsson"]
|
|
14
13
|
spec.email = "sky4winder+github_changelog_generator@gmail.com"
|
|
15
|
-
|
|
14
|
+
|
|
16
15
|
spec.summary = "Script, that automatically generate changelog from your tags, issues, labels and pull requests."
|
|
17
16
|
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
17
|
spec.homepage = "https://github.com/skywinder/Github-Changelog-Generator"
|
metadata
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
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.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Petr Korolev
|
|
8
|
+
- Olle Jonsson
|
|
8
9
|
autorequire:
|
|
9
10
|
bindir: bin
|
|
10
11
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
12
|
+
date: 2016-03-04 00:00:00.000000000 Z
|
|
12
13
|
dependencies:
|
|
13
14
|
- !ruby/object:Gem::Dependency
|
|
14
15
|
name: rake
|