Skip to content

Commit

Permalink
* NEWS: Reword and improve entries.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@12057 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
knu committed Mar 12, 2007
1 parent 7b43cab commit bfe370c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
@@ -1,3 +1,7 @@
Tue Mar 13 06:38:43 2007 Akinori MUSHA <knu@iDaemons.org>

* NEWS: Reword and improve entries.

Tue Mar 13 06:03:46 2007 Akinori MUSHA <knu@iDaemons.org>

* stable version 1.8.6 released from the ruby_1_8_6 branch.
Expand Down
24 changes: 13 additions & 11 deletions NEWS
@@ -1,7 +1,7 @@
= NEWS

This document is a list of user visible feature changes made between
releases excluding bug fixes.
releases except for bug fixes.

Note that each entry is kept so brief that no reason behind or
reference information is supplied with. For a full list of changes
Expand Down Expand Up @@ -29,6 +29,11 @@ with all sufficient information, see the ChangeLog file.

* Support for autoloading.

require 'digest'

# autoloads digest/md5
md = Digest::MD5.digest("string")

* See below for new features and compatibility issues.

* nkf
Expand Down Expand Up @@ -63,9 +68,8 @@ with all sufficient information, see the ChangeLog file.

* New digest class methods: file

* New digest instance methods: clone, reset, new,
inspect, digest_length (alias size or length),
block_length()
* New digest instance methods: clone, reset, new, inspect,
digest_length (alias size or length), block_length()

* New library: digest/bubblebabble

Expand All @@ -78,8 +82,8 @@ with all sufficient information, see the ChangeLog file.
* thread

* Replaced with much faster mutex implementation in C.
The former implementation is available with a
configure option `--disable-fastthread'.
The former implementation is available with a configure option
`--disable-fastthread'.

* webrick

Expand All @@ -95,14 +99,12 @@ with all sufficient information, see the ChangeLog file.
* fileutils

* A minor implementation change breaks Rake <=0.7.1.
Updating Rake to 0.7.2 fixes the problem.
Updating Rake to 0.7.2 or higher fixes the problem.

* digest

* The constructor does no longer take an initial
string to feed; digest() and hexdigest() now do,
instead. The following examples show how to
migrate:
* The constructor does no longer take an initial string to feed.
The following examples show how to migrate:

# Before
md = Digest::MD5.new("string")
Expand Down

0 comments on commit bfe370c

Please sign in to comment.