github_changelog_generator 1.8.2 → 1.8.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 45dd209e14aacbafef24aa1aea1a9dd835dca222
|
|
4
|
+
data.tar.gz: 5d75d0cc87140ca09aba915e0bdb7e2659a959c5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dd65b7e62e37bdc37395c8475d76dbc5891e33fee3a8ca6b6101c9e97f4385c477ade3a4e2e6213e5690dd5f726619ae5060e7c7d48da5cc96220d535e388dfb
|
|
7
|
+
data.tar.gz: 390065549f7bbf29bb8dcbf91c3f009956727946e476baa3c8330d87262d0d583c9566677d55c0b9619007df9f650b12f030063867d22eeb9017a7bbe35988bb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [1.8.2](https://github.com/skywinder/github-changelog-generator/tree/1.8.2) (2015-08-26)
|
|
4
|
+
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.1...1.8.2)
|
|
5
|
+
|
|
6
|
+
**Closed issues:**
|
|
7
|
+
|
|
8
|
+
- Output should not include security information [\#270](https://github.com/skywinder/github-changelog-generator/issues/270)
|
|
9
|
+
|
|
3
10
|
## [1.8.1](https://github.com/skywinder/github-changelog-generator/tree/1.8.1) (2015-08-25)
|
|
4
11
|
[Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.0...1.8.1)
|
|
5
12
|
|
|
@@ -120,22 +120,22 @@ module GitHubChangelogGenerator
|
|
|
120
120
|
issues_a.push dict unless added
|
|
121
121
|
end
|
|
122
122
|
|
|
123
|
+
added_pull_requests = []
|
|
123
124
|
pull_requests.each do |dict|
|
|
124
|
-
added = false
|
|
125
125
|
dict.labels.each do |label|
|
|
126
126
|
if @options[:bug_labels].include? label.name
|
|
127
127
|
bugs_a.push dict
|
|
128
|
-
|
|
128
|
+
added_pull_requests.push dict
|
|
129
129
|
next
|
|
130
130
|
end
|
|
131
131
|
if @options[:enhancement_labels].include? label.name
|
|
132
132
|
enhancement_a.push dict
|
|
133
|
-
|
|
133
|
+
added_pull_requests.push dict
|
|
134
134
|
next
|
|
135
135
|
end
|
|
136
136
|
end
|
|
137
|
-
pull_requests.delete(dict) if added
|
|
138
137
|
end
|
|
138
|
+
added_pull_requests.each { |p| pull_requests.delete(p) }
|
|
139
139
|
|
|
140
140
|
[bugs_a, enhancement_a, issues_a]
|
|
141
141
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: github_changelog_generator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.8.
|
|
4
|
+
version: 1.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Petr Korolev
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-08-
|
|
11
|
+
date: 2015-08-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: github_api
|