diff --git a/CHANGELOG b/CHANGELOG index 42e6032..ef1c048 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,13 +1,15 @@ head: +0.6.3: + +- Make bucket names globally unique [Jeffrey Hardy jeff@37signals.com] +- Add S3Object.update for updating things like the content-type without re-uploading the file [Jeffrey Hardy jeff@37signals.com] 0.6.2: -- Apparently need to use custom __method__ in Ruby versions right up to 1.8.7. +- Use custom __method__ in Ruby versions *prior* to 1.8.7 not *up to* 1.8.7. 0.6.1: -- Use custom __method__ in Ruby versions *prior* to 1.8.7 not *up to* 1.8.7. - - Rename Kernel#memoize to Kernel#expirable_memoize so that it doesn't conflict with memoize method in ActiveSupport which has an entirely different API and semantics. Reported by [Florian Dütsc (mail@florian-duetsch.de)]. 0.6.0: diff --git a/lib/aws/s3/version.rb b/lib/aws/s3/version.rb index b60aa3c..2eabd22 100644 --- a/lib/aws/s3/version.rb +++ b/lib/aws/s3/version.rb @@ -3,10 +3,9 @@ module S3 module VERSION #:nodoc: MAJOR = '0' MINOR = '6' - TINY = '2' - BETA = Time.now.to_i.to_s + TINY = '3' end - Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY, VERSION::BETA].compact * '.' + Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY].compact * '.' end end