github_changelog_generator 1.8.3 → 1.8.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 45dd209e14aacbafef24aa1aea1a9dd835dca222
4
- data.tar.gz: 5d75d0cc87140ca09aba915e0bdb7e2659a959c5
3
+ metadata.gz: 458d8ae7d1f220110a7a489e3c235c629309657e
4
+ data.tar.gz: d82f6a55a5eed931927e2041b2c33523260c2ff9
5
5
  SHA512:
6
- metadata.gz: dd65b7e62e37bdc37395c8475d76dbc5891e33fee3a8ca6b6101c9e97f4385c477ade3a4e2e6213e5690dd5f726619ae5060e7c7d48da5cc96220d535e388dfb
7
- data.tar.gz: 390065549f7bbf29bb8dcbf91c3f009956727946e476baa3c8330d87262d0d583c9566677d55c0b9619007df9f650b12f030063867d22eeb9017a7bbe35988bb
6
+ metadata.gz: 32108abe8f588031fb40850c25fc43b59b1354ada1fd564e41a1c5c8ecad63b986c7ec6fdef20dc9afeb694cc7410c94fdd8b8a236c41951251e6a58b1136bbc
7
+ data.tar.gz: ab67ee876245818885efe2b7a41be655ad7ad3917ab4e5a9e4fa5f31cefa32684b49793627decf02aca63dfd82b384d0c1c927bc7b1eb7ae247a793d4214a7eb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Change Log
2
2
 
3
+ ## [1.8.3](https://github.com/skywinder/github-changelog-generator/tree/1.8.3) (2015-08-31)
4
+ [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.2...1.8.3)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Do not alter pull\_requests while iterating on it [\#271](https://github.com/skywinder/github-changelog-generator/pull/271) ([raphink](https://github.com/raphink))
9
+
3
10
  ## [1.8.2](https://github.com/skywinder/github-changelog-generator/tree/1.8.2) (2015-08-26)
4
11
  [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.8.1...1.8.2)
5
12
 
@@ -241,16 +248,13 @@
241
248
  **Implemented enhancements:**
242
249
 
243
250
  - Use milestone to specify in which version bug was fixed [\#22](https://github.com/skywinder/github-changelog-generator/issues/22)
251
+ - support enterprise github via command line options [\#42](https://github.com/skywinder/github-changelog-generator/pull/42) ([glenlovett](https://github.com/glenlovett))
244
252
 
245
253
  **Fixed bugs:**
246
254
 
247
255
  - Error when trying to generate log for repo without tags [\#32](https://github.com/skywinder/github-changelog-generator/issues/32)
248
256
  - PrettyPrint class is included using lowercase 'pp' [\#43](https://github.com/skywinder/github-changelog-generator/pull/43) ([schwing](https://github.com/schwing))
249
257
 
250
- **Merged pull requests:**
251
-
252
- - support enterprise github via command line options [\#42](https://github.com/skywinder/github-changelog-generator/pull/42) ([glenlovett](https://github.com/glenlovett))
253
-
254
258
  ## [1.2.4](https://github.com/skywinder/github-changelog-generator/tree/1.2.4) (2014-12-16)
255
259
  [Full Changelog](https://github.com/skywinder/github-changelog-generator/compare/1.2.3...1.2.4)
256
260
 
@@ -22,15 +22,20 @@ module GitHubChangelogGenerator
22
22
  exit
23
23
  end
24
24
 
25
+ print_options(options)
26
+
27
+ options
28
+ end
29
+
30
+ # @param [Hash] options to display
31
+ def self.print_options(options)
25
32
  if options[:verbose]
26
33
  Helper.log.info "Performing task with options:"
27
- options_to_display = options
34
+ options_to_display = options.clone
28
35
  options_to_display[:token] = options_to_display[:token].nil? ? nil : "hidden value"
29
36
  pp options_to_display
30
37
  puts ""
31
38
  end
32
-
33
- options
34
39
  end
35
40
 
36
41
  # setup parsing options
@@ -1,3 +1,3 @@
1
1
  module GitHubChangelogGenerator
2
- VERSION = "1.8.3"
2
+ VERSION = "1.8.4"
3
3
  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.3
4
+ version: 1.8.4
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-31 00:00:00.000000000 Z
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github_api