diff --git a/CHANGES b/CHANGES index 4810b60..fb2c9aa 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +0.10.1 +- Updated oauth and sequel gem dependencies +- Fixed 410 responses for stale PUT operations +- Fixed MySQL content encoding (Harry Weppner) +- Various fixes for filter_merge!, rekey!, and excluding (Cameron Walters) + 0.10.0 - Updated for Rack 0.9 - Added batch URI resolution for resource collections @@ -12,4 +18,4 @@ - Updated documentation 0.9.0 -- First public gem release \ No newline at end of file +- First public gem release diff --git a/cloudkit.gemspec b/cloudkit.gemspec index e4485c9..456bc37 100644 --- a/cloudkit.gemspec +++ b/cloudkit.gemspec @@ -2,8 +2,8 @@ Gem::Specification.new do |s| s.specification_version = 2 if s.respond_to? :specification_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.name = "cloudkit" - s.version = "0.10.0" - s.date = "2008-01-09" + s.version = "0.10.1" + s.date = "2008-01-27" s.summary = "An Open Web JSON Appliance." s.description = "An Open Web JSON Appliance." s.authors = ["Jon Crosby"] diff --git a/doc/index.html b/doc/index.html index dca88de..0d251b7 100644 --- a/doc/index.html +++ b/doc/index.html @@ -24,7 +24,7 @@

CloudKit

- Version 0.10.0 released. Install with gem install cloudkit. + Version 0.10.1 released. Install with gem install cloudkit.

diff --git a/lib/cloudkit.rb b/lib/cloudkit.rb index 8ba92ac..ac99798 100644 --- a/lib/cloudkit.rb +++ b/lib/cloudkit.rb @@ -35,7 +35,7 @@ include CloudKit::Constants module CloudKit - VERSION = '0.10.0' + VERSION = '0.10.1' end class Object