File: History.txt

package info (click to toggle)
libextlib-ruby 0.9.13-2%2Bdeb6u1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze-lts
  • size: 532 kB
  • ctags: 487
  • sloc: ruby: 7,118; makefile: 3
file content (77 lines) | stat: -rw-r--r-- 2,190 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
=== 0.9.13 / 2009-10-15

* 3 minor enhancements:
  * Updated LazyArray#head, #tail and #lazy_possible? to be public
  * Refactored Time#to_datetime to not use DateTime.parse
  * Updated Logger to use Array#join instead of Array#to_s to make
    it compatible with Ruby 1.9

=== 0.9.12 / 2009-05-05

* 4 bug fixes

  * Fixed constant lookup for nested constructs
  * Moved ByteArray to the Extlib module
  * Fix specs for recent RSpec versions
  * Fix compatibility with ActiveSupport

=== 0.9.11 / 2009-03-29

* 1 major enhancement:

  * Added LazyModule, providing similar capabilities to traits in
    Smalltalk

* 5 minor enhancements:

  * Added Array#to_hash and Array#to_mash
  * Silenced warnings when running in verbose mode
  * Add ByteArray for representing binary data explicitly
  * Alias Pathname#to_s to Pathname#to_str when not defined
  * Added Object#try_call

* 2 bug fixes:

  * Updated Module.find_const to use const_missing if constant not found
  * Fixed LazyArray#equal? to compare object_ids

=== 0.9.10 / 2009-01-19

* 1 major enhancement:

  * Ruby 1.9.1 compatibility

* 1 minor enhancement:

  * Updated LazyArray#eql? and LazyArray#== to compare without lazy
    loading if possible.

* 3 bug fixes:

  * Fix for inheritance and hooks
  * Fix for Class inheritable accessor to use #try_dup
  * Fix for LazyArray to be more explicit in delegating to Array,
    to lessen conflicts in subclasses

=== 0.9.9 / 2008-12-07

* 1 major enhancement:

  * Updated LazyArray to have a tail/head so that it can append/prepend
    without lazy-loading.  This will eliminate some too-eager loading
    from DataMapper::Collection, and (in certain cases) will boost
    performance significantly.

* 3 minor enhancements:

  * Minor Ruby 1.9.1 fixes.  RSpec still needs to be updated to support
    1.9.1 before everything can be verified completely.
  * Updated Extlib::Inflection so that the plural of "cow" is now
    "cows" instead of "kine".
  * Misc documentation updates.

* 2 bug fixes:

  * Fixed Extlib::Pooling Threading issue on JRuby and Windows.
  * Removed Object#encoded_hash.  It was not used by DataMapper or Merb,
    and the specs were failing for JRuby.