bundleup 0.6.0 → 0.6.1

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: 937fb9c6fe224775034f3b171ba144c66d219ecd
4
- data.tar.gz: 125b8152261a96af8e11ae5a194d6c3b086996fd
3
+ metadata.gz: 202814f89a8c87f2dcd6c217b4805baa659a15e1
4
+ data.tar.gz: e0d22b116ff16bb179865422ca3cebee9be72937
5
5
  SHA512:
6
- metadata.gz: f270281d398bf180238623faf7e7dd7f7fe049ed6ec700a68ddbb128cc7178c007d3f21e18bacf118d52d1d6153313dad16c3ad2b92c9cfa11377f976d7b4bff
7
- data.tar.gz: 32cef2ce2c943d5b71a194423a006bb734855eb6e6a0654b219250cb8eee54f7d99baa3739f8dd538ee78019914a32df2e2d0bc69167616bcc31fcdbe15f62b0
6
+ metadata.gz: 75723dd9479a0473e325255f5610f5f5bf7975e617ec366b8206507ddf0a976fbeebf5bb78918c2223d01631136f2bc9079839ed71a5accc27c433fb6455cdef
7
+ data.tar.gz: c9ce8cfb723553440529bdfef9cb54e26c1d6095c05d801913efcbc47822adaf374f697f81bfd9fa62302b324646f75b4b621b08a502ac5069dedc4ce844d7d9
@@ -8,6 +8,10 @@ bundleup is in a pre-1.0 state. This means that its APIs and behavior are subjec
8
8
 
9
9
  * Your contribution here!
10
10
 
11
+ ## [0.6.1][] (2017-11-06)
12
+
13
+ * Fix erroneous blank lines in output
14
+
11
15
  ## [0.6.0][] (2017-11-06)
12
16
 
13
17
  * [#1](https://github.com/mattbrictson/bundleup/issues/1): If a Gemfile has an inline or prefix comment for a particular gem, and that gem is being held back due to a pin, then print the comment along with the pin information in bundleup's output.
@@ -48,7 +52,8 @@ bundleup is in a pre-1.0 state. This means that its APIs and behavior are subjec
48
52
  * Initial release
49
53
 
50
54
  [Semver]: http://semver.org
51
- [Unreleased]: https://github.com/mattbrictson/bundleup/compare/v0.6.0...HEAD
55
+ [Unreleased]: https://github.com/mattbrictson/bundleup/compare/v0.6.1...HEAD
56
+ [0.6.1]: https://github.com/mattbrictson/bundleup/compare/v0.6.0...v0.6.1
52
57
  [0.6.0]: https://github.com/mattbrictson/bundleup/compare/v0.5.0...v0.6.0
53
58
  [0.5.0]: https://github.com/mattbrictson/bundleup/compare/v0.4.0...v0.5.0
54
59
  [0.4.0]: https://github.com/mattbrictson/bundleup/compare/v0.3.0...v0.4.0
@@ -18,7 +18,7 @@ module Bundleup
18
18
 
19
19
  def color(color_name, message)
20
20
  code = ANSI_CODES[color_name]
21
- return puts(message) if code.nil?
21
+ return message if code.nil?
22
22
  "\e[0;#{code};49m#{message}\e[0m"
23
23
  end
24
24
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bundleup
4
- VERSION = "0.6.0".freeze
4
+ VERSION = "0.6.1".freeze
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bundleup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Brictson