Skip to content

Commit

Permalink
Preparing Release v1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
leehambley committed Dec 16, 2014
1 parent 1905283 commit 08a213b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ appear at the top.

## 1.6.0

* Fix colorize to use the correct API (@fazibear)
* Lock colorize (sorry guys) version at >= 0.7.0

This comment has been minimized.

Copy link
@sponomarev

sponomarev Dec 16, 2014

Contributor

Breaking changes was in colorize 0.7.5, 0.7.4 was quite compatible

This comment has been minimized.

Copy link
@baburdick

baburdick Dec 16, 2014

+1 Agreed.

This comment has been minimized.

Copy link
@leehambley

leehambley Dec 16, 2014

Author Member

Kept a relaxed version constraint as it seems like all 0.7.x maintains the String.colors (and .modes) APIs.

This comment has been minimized.

Copy link
@leehambley

leehambley Dec 16, 2014

Author Member

Not visible in this commit is the change here: 1905283#diff-41e1e44b9e2532ca596ea36a2ac660c6R4

This comment has been minimized.

Copy link
@sponomarev

sponomarev Dec 16, 2014

Contributor

it will cause the incompatibility of sshkit 1.6.1 and colorize <=0.7.4

This comment has been minimized.

Copy link
@leehambley

leehambley via email Dec 16, 2014

Author Member

This comment has been minimized.

Copy link
@leehambley

leehambley Dec 16, 2014

Author Member

Tried with 0.7.0 to 0.7.5 inclusive:

# colorize.rb
gem "colorize", "0.7.5"

require "pp"
require "colorize"

pp String.colors
$ ruby colorize.rb
[:black,
 :light_black,
 :red,
 :light_red,
 :green,
 :light_green,
 :yellow,
 :light_yellow,
 :blue,
 :light_blue,
 :magenta,
 :light_magenta,
 :cyan,
 :light_cyan,
 :white,
 :light_white,
 :default]

## 1.6.0 (Yanked, because of colorize.)

* Force dependency on colorize v0.6.0
* Add your entries here, remember to credit yourself however you want to be
credited!
Expand Down
2 changes: 1 addition & 1 deletion lib/sshkit/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SSHKit
VERSION = "1.6.0"
VERSION = "1.6.1"
end
6 changes: 3 additions & 3 deletions sshkit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]
gem.version = SSHKit::VERSION

gem.add_runtime_dependency('net-ssh', '>= 2.8.0')
gem.add_runtime_dependency('net-scp', '>= 1.1.2')
gem.add_runtime_dependency('colorize', '>= 0.6.0')
gem.add_runtime_dependency('net-ssh', '>= 2.8.0')
gem.add_runtime_dependency('net-scp', '>= 1.1.2')
gem.add_runtime_dependency('colorize', '>= 0.7.0')

gem.add_development_dependency('minitest', ['>= 2.11.3', '< 2.12.0'])
gem.add_development_dependency('rake')
Expand Down

0 comments on commit 08a213b

Please sign in to comment.