diff --git a/History.txt b/History.txt index 82b8f6b..f5f1e88 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,9 @@ +== 2.1.2 / 2015-03-10 +* loosen mime-types requirements (for better ruby 1.8.7 support) +* use io/console gem instead of curses (for better jruby support) +* fix parsing bug when chronic gem is not available +* allow default array to be empty if a type is specified +* better specified license and better spec coverage == 2.1.1 / 2015-01-03 * Remove curses as a hard dependency. It is optional. This can leverage the gem if it is present. * Fix ruby -w warnings diff --git a/lib/trollop.rb b/lib/trollop.rb index 52f640b..f141bd1 100644 --- a/lib/trollop.rb +++ b/lib/trollop.rb @@ -6,7 +6,7 @@ require 'date' module Trollop -VERSION = "2.1.1" +VERSION = "2.1.2" ## Thrown by Parser in the event of a commandline error. Not needed if ## you're using the Trollop::options entry.