Prepare CHANGELOG and version string for release.

This commit is contained in:
Marcel Molina 2009-04-20 18:36:42 -07:00
Родитель 5077cf7676
Коммит 46273ad1d8
2 изменённых файлов: 4 добавлений и 2 удалений

Просмотреть файл

@ -1,5 +1,7 @@
head: head:
- 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)]. - 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: 0.6.0:

Просмотреть файл

@ -3,8 +3,8 @@ module AWS
module VERSION #:nodoc: module VERSION #:nodoc:
MAJOR = '0' MAJOR = '0'
MINOR = '6' MINOR = '6'
TINY = '0' TINY = '1'
BETA = Time.now.to_i.to_s BETA = #Time.now.to_i.to_s
end end
Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY, VERSION::BETA].compact * '.' Version = [VERSION::MAJOR, VERSION::MINOR, VERSION::TINY, VERSION::BETA].compact * '.'