diff -Nru ruby-rainbow-1.99.1/Changelog.md ruby-rainbow-2.0.0/Changelog.md --- ruby-rainbow-1.99.1/Changelog.md 2013-12-30 17:08:42.000000000 +0000 +++ ruby-rainbow-2.0.0/Changelog.md 2014-02-03 22:36:14.000000000 +0000 @@ -57,3 +57,11 @@ * `require "rainbow/string"` -> `require "rainbow/ext/string"` * custom rainbow wrapper instances (with separate enabled/disabled state) * shortcut methods for changing text color (`Rainbow("foo").red`) + +## 1.99.2 (2014-01-24) + +* bring back ruby 1.8 support + +## 2.0.0 (2014-01-24) + +* disable string mixin by default Binary files /tmp/EmvP6pXQ97/ruby-rainbow-1.99.1/checksums.yaml.gz and /tmp/SKfNJBdRHi/ruby-rainbow-2.0.0/checksums.yaml.gz differ diff -Nru ruby-rainbow-1.99.1/debian/changelog ruby-rainbow-2.0.0/debian/changelog --- ruby-rainbow-1.99.1/debian/changelog 2014-01-22 20:44:02.000000000 +0000 +++ ruby-rainbow-2.0.0/debian/changelog 2014-03-01 22:51:08.000000000 +0000 @@ -1,3 +1,9 @@ +ruby-rainbow (2.0.0-1) unstable; urgency=low + + * New upstream release + + -- Nitesh A Jain Wed, 05 Feb 2014 20:47:17 +0530 + ruby-rainbow (1.99.1-1) unstable; urgency=low * New upstream release diff -Nru ruby-rainbow-1.99.1/Gemfile ruby-rainbow-2.0.0/Gemfile --- ruby-rainbow-1.99.1/Gemfile 2013-12-30 17:08:42.000000000 +0000 +++ ruby-rainbow-2.0.0/Gemfile 2014-02-03 22:36:14.000000000 +0000 @@ -12,6 +12,6 @@ end platform :rbx do + gem 'json' gem 'rubysl' - gem 'rubysl-json' end diff -Nru ruby-rainbow-1.99.1/lib/rainbow/version.rb ruby-rainbow-2.0.0/lib/rainbow/version.rb --- ruby-rainbow-1.99.1/lib/rainbow/version.rb 2013-12-30 17:08:42.000000000 +0000 +++ ruby-rainbow-2.0.0/lib/rainbow/version.rb 2014-02-03 22:36:14.000000000 +0000 @@ -1,3 +1,3 @@ module Rainbow - VERSION = "1.99.1".freeze + VERSION = "2.0.0".freeze end diff -Nru ruby-rainbow-1.99.1/lib/rainbow.rb ruby-rainbow-2.0.0/lib/rainbow.rb --- ruby-rainbow-1.99.1/lib/rainbow.rb 2013-12-30 17:08:42.000000000 +0000 +++ ruby-rainbow-2.0.0/lib/rainbow.rb 2014-02-03 22:36:14.000000000 +0000 @@ -1,6 +1,5 @@ require 'rainbow/global' require 'rainbow/legacy' -require 'rainbow/ext/string' module Rainbow diff -Nru ruby-rainbow-1.99.1/metadata.yml ruby-rainbow-2.0.0/metadata.yml --- ruby-rainbow-1.99.1/metadata.yml 2013-12-30 17:08:42.000000000 +0000 +++ ruby-rainbow-2.0.0/metadata.yml 2014-02-03 22:36:14.000000000 +0000 @@ -1,14 +1,14 @@ --- !ruby/object:Gem::Specification name: rainbow version: !ruby/object:Gem::Version - version: 1.99.1 + version: 2.0.0 platform: ruby authors: - Marcin Kulik autorequire: bindir: bin cert_chain: [] -date: 2013-12-28 00:00:00.000000000 Z +date: 2014-01-24 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: bundler diff -Nru ruby-rainbow-1.99.1/README.markdown ruby-rainbow-2.0.0/README.markdown --- ruby-rainbow-1.99.1/README.markdown 2013-12-30 17:08:42.000000000 +0000 +++ ruby-rainbow-2.0.0/README.markdown 2014-02-03 22:36:14.000000000 +0000 @@ -76,9 +76,10 @@ NOTE: the mixing doesn't include shortcut methods for changing text color, you should use "string".color(:blue) instead of "string".blue -NOTE: the mixin is included in String by default in rainbow versions up to (and -including) 1.99.x to not break backwards compatibility. It won't be included by -default in rainbow 2.0. +NOTE: the mixin is included in String by default in rainbow 1.x versions. +In rainbow 2.x the behavior was changed - if you're upgrading from 1.x to 2.x +and you used direct String methods then you can either require the string +extension as shown above or update your code to use the new presenter API. ### Color specification