Skip to content

Commit

Permalink
bump to 0.6.3 and remove beta version marker
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshua Sierles committed Jan 5, 2010
1 parent 91a022c commit 7d26e58
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
head:

0.6.3:

- Make bucket names globally unique [Jeffrey Hardy [email protected]]
- Add S3Object.update for updating things like the content-type without re-uploading the file [Jeffrey Hardy [email protected]]
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 ([email protected])].

0.6.0:
Expand Down
5 changes: 2 additions & 3 deletions lib/aws/s3/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7d26e58

Please sign in to comment.