Skip to content

Commit 7d26e58

Browse files
author
Joshua Sierles
committed
bump to 0.6.3 and remove beta version marker
1 parent 91a022c commit 7d26e58

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
head:
22

3+
0.6.3:
4+
5+
- Make bucket names globally unique [Jeffrey Hardy [email protected]]
6+
- Add S3Object.update for updating things like the content-type without re-uploading the file [Jeffrey Hardy [email protected]]
37
0.6.2:
48

5-
- Apparently need to use custom __method__ in Ruby versions right up to 1.8.7.
9+
- Use custom __method__ in Ruby versions *prior* to 1.8.7 not *up to* 1.8.7.
610

711
0.6.1:
812

9-
- Use custom __method__ in Ruby versions *prior* to 1.8.7 not *up to* 1.8.7.
10-
1113
- 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])].
1214

1315
0.6.0:

lib/aws/s3/version.rb

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ module S3
33
module VERSION #:nodoc:
44
MAJOR = '0'
55
MINOR = '6'
6-
TINY = '2'
7-
BETA = Time.now.to_i.to_s
6+
TINY = '3'
87
end
98

10-
Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY, VERSION::BETA].compact * '.'
9+
Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY].compact * '.'
1110
end
1211
end

0 commit comments

Comments
 (0)