Raise BadElementError if Stream#serialize is called on a bad Stream object.
[ruby-eet.git] / ChangeLog
index 51ce4d1089ee57fa578a13758009f8985f29e0c3..26487df17b9e73c62ba6bc4990c85db7217f6872 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,76 @@
 --
-$Id: ChangeLog 32 2005-04-19 09:07:57Z tilman $
+$Id: ChangeLog 62 2005-06-09 17:42:34Z tilman $
 ++
 
+2005-06-09 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Object#to_eet: Don't put the final chunk in a stream
+          again, it's not needed
+        * ext/ext.c, test/test_stream.rb: If Stream#serialize is called on
+          a stream that includes non-Chunk elements, BadElementError is
+          raised
+
+2005-06-08 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c, lib/eet.rb, test/test_basic.rb:
+          Re-implemented Float#to_eet_chunks in C and switched format to
+          the one libeet uses.
+        * ext/ext.c, lib/eet.rb: Re-implemented Integer#to_eet_chunks
+          in C
+
+2005-06-02 Tilman Sauerbeck (tilman at code-monkey de)
+        * Released version 0.1.3
+
+2005-06-02 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Fixed to work on Ruby 1.8.{0,1} again
+        * lib/eet.rb: Bumped version number to 0.1.3
+        * ext/ext.c: Fixed RDoc comment for Object#to_eet
+        * Rakefile: If the CC environment variable is set, use its value
+          instead of calling "cc".
+        * NEWS: Updated for 0.1.3
+
+2005-05-31 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Optimized Object#to_eet slightly
+
+2005-05-30 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/eet.rb, ext/ext.c: Re-implemented Chunk#initialize in C
+        * ext/ext.c: Code cleanup
+        * lib/eet.rb, ext/ext.c: Re-implemented Object#to_eet in C
+        * ext/ext.c: Code cleanup
+
+2005-05-25 Tilman Sauerbeck (tilman at code-monkey de)
+        * test/test_array_sub.rb: Added a test for the :sub format
+          specifier
+        * lib/eet.rb, test/test_chunk.rb: Chunk.deserialize doesn't
+          modify its argument any more, instead, the number of bytes
+          consumed is now returned, too.
+        * lib/eet.rb: Stream.deserialize fails if the given buffer is
+          empty
+        * lib/eet.rb: Chunk.deserialize fails if the given buffer is
+          empty
+
+2005-05-19 Tilman Sauerbeck (tilman at code-monkey de)
+        * Rakefile: Code cleanup
+
+2005-05-18 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/eet.rb: Grammar fix
+        * lib/eet.rb: Don't use Array#pack when the result is constant
+
+2005-05-13 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Work around RDoc's limitations
+
+2005-05-11 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Don't define BSWAP16, it's not used
+        * lib/eet.rb: Don't specify the parent class of Eet::Stream when
+          we re-open it
+
+2005-05-10 Tilman Sauerbeck (tilman at code-monkey de)
+        * ext/ext.c: Store the result of rb_intern("include?") in a
+          global variable, since it's used very often
+
+2005-04-30 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/eet.rb: Tweaked Stream#serialize for performance
+        * lib/eet.rb, ext/ext.c: Re-implemented Stream#serialize and
+          Chunk#serialize in C
+
 2005-04-19 Tilman Sauerbeck (tilman at code-monkey de)
         * Rakefile: Code cleanup