diff --git a/.travis.yml b/.travis.yml index 5de5099..6c57454 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,14 +2,13 @@ rvm: - 2.0 - 2.1 - 2.2 + - 2.3.1 - ruby-head - - rbx-20mode - - jruby-head + - jruby matrix: allow_failures: - rvm: ruby-head - - rvm: jruby-head - - rvm: rbx-20mode + - rvm: jruby env: - CODECLIMATE_REPO_TOKEN=ef2c31d6fd3c385eef57dcb62374be51b56af36dd4405763d3e43a1c06330b33 sudo: false diff --git a/CHANGES b/CHANGES index 433caeb..0c212c9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,4 @@ +2016-09-27 - 1.4.0 * Extend colorized strings with Term::ANSIColor 2015-06-23 - 1.3.2 * Fix release 1.3.1 2014-06-17 - 1.3.1 * This release was a bit premature, yanked it. 2014-02-06 - 1.3.0 * Support bright and faint color names. diff --git a/VERSION b/VERSION index 1892b92..88c5fb8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.2 +1.4.0 diff --git a/lib/term/ansicolor/version.rb b/lib/term/ansicolor/version.rb index d0f1bcf..221a260 100644 --- a/lib/term/ansicolor/version.rb +++ b/lib/term/ansicolor/version.rb @@ -1,6 +1,6 @@ module Term::ANSIColor # Term::ANSIColor version - VERSION = '1.3.2' + VERSION = '1.4.0' VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc: VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc: VERSION_MINOR = VERSION_ARRAY[1] # :nodoc: diff --git a/term-ansicolor.gemspec b/term-ansicolor.gemspec index 3dbffb0..47805ec 100644 --- a/term-ansicolor.gemspec +++ b/term-ansicolor.gemspec @@ -1,9 +1,9 @@ # -*- encoding: utf-8 -*- -# stub: term-ansicolor 1.3.2 ruby lib +# stub: term-ansicolor 1.4.0 ruby lib Gem::Specification.new do |s| s.name = "term-ansicolor" - s.version = "1.3.2" + s.version = "1.4.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.require_paths = ["lib"]