diff --git a/History.rdoc b/History.rdoc index fce88b7..8d7caa0 100644 --- a/History.rdoc +++ b/History.rdoc @@ -1,9 +1,11 @@ +== 1.0.0 / 2011-07-12 -* removed numerous validations -* removed indifferent access -- all configs are stored and accessed - by symbol keys -* configs now do not duplicate default values by default -* configs now order alphabetically, and have no guaranteed set order +Significant rewrite of all internals. Configurations are easier to declare and +have a more formal type system that allows almost everything to be inferred +from the default value. The rewrite is designed to be flexible and to handle +usage in a variety of interfaces, but only time will tell. + +Currently passes all tests on: 1.8.6, 1.8.7, 1.9.2, rbx, jruby == 0.7.0 / 2010-05-02 diff --git a/lib/configurable/version.rb b/lib/configurable/version.rb index ce842f3..2e89207 100644 --- a/lib/configurable/version.rb +++ b/lib/configurable/version.rb @@ -1,7 +1,3 @@ module Configurable - MAJOR = 0 - MINOR = 7 - TINY = 0 - - VERSION="#{MAJOR}.#{MINOR}.#{TINY}" + VERSION = '1.0.0' end \ No newline at end of file