diff --git a/CHANGES b/CHANGES index f1bb10d..2b30cb0 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,13 @@ -v1.1.0 +v1.0.1 ====== * Build now copies the entire release path into the javascript director. To see how to address build vs. development - issues, check out the ideapad reference application. + issues, check out the ideapad reference application. This fixes problems caused by external resources not being + loaded from the generated build. + + See: http://github.com/foobarfighter/ideapad/blob/e3dc0b610b71755739d99ed39539385bee99f4d4/app/views/layouts/layout.html.erb + http://github.com/foobarfighter/ideapad/blob/e3dc0b610b71755739d99ed39539385bee99f4d4/.gitignore + * Added drails testing capabilities for multiple versions of rails * Added Drails::VERSION module diff --git a/lib/drails/version.rb b/lib/drails/version.rb index 90e3f59..82be281 100644 --- a/lib/drails/version.rb +++ b/lib/drails/version.rb @@ -1,8 +1,8 @@ module Drails module VERSION #:nodoc: MAJOR = 1 - MINOR = 1 - TINY = 0 + MINOR = 0 + TINY = 1 STRING = [MAJOR, MINOR, TINY].join('.') end diff --git a/spec/version_spec.rb b/spec/version_spec.rb index ae6255e..daa204d 100644 --- a/spec/version_spec.rb +++ b/spec/version_spec.rb @@ -1,6 +1,6 @@ describe Drails do it "reports the correct version information" do - expected_version_string = "1.1.0" + expected_version_string = "1.0.1" Drails::VERSION::STRING.should == expected_version_string expected_version_array = expected_version_string.split(".").collect { |part| part.to_i } Drails::VERSION::MAJOR.should == expected_version_array[0]