summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-15 13:10:42 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-10-15 13:10:42 +0000
commitc6866d8b620b2767d94f58b52e52786af385d9d6 (patch)
tree8e645252abf35ef9e37cc76d38a902c0b5797375 /NEWS
parent218caf6f642323fb78dd529a6960904b5397ace2 (diff)
* NEWS: Merge some of the sub-sections, as the differences were
unclear. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@13708 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS76
1 files changed, 34 insertions, 42 deletions
diff --git a/NEWS b/NEWS
index dd7b8ad36a..2e848d5b74 100644
--- a/NEWS
+++ b/NEWS
@@ -9,11 +9,15 @@ with all sufficient information, see the ChangeLog file.
== Changes with Ruby 1.8.6
-=== New library
+=== Library updates (outstanding ones only)
-* securerandom
+* new library
-=== Library updates (outstanding ones only)
+ * securerandom
+
+* builtin classes
+
+ * Regexp.union accepts an array of patterns.
* openssl
@@ -43,17 +47,6 @@ with all sufficient information, see the ChangeLog file.
Shellwords.split (alias shellwords)
String#shellsplit
-* tmpdir
-
- * New method:
- Dir.mktmpdir
-
-=== New methods and features
-
-* builtin classes
-
- * Regexp.union accepts an array of patterns.
-
* tempfile
* Tempfile.open and Tempfile.new now accept a suffix for the
@@ -70,6 +63,11 @@ with all sufficient information, see the ChangeLog file.
in temporary file names any more. See above for how to specify a
suffix.
+* tmpdir
+
+ * New method:
+ Dir.mktmpdir
+
== Changes with Ruby 1.8.5
@@ -83,6 +81,14 @@ with all sufficient information, see the ChangeLog file.
=== Library updates (outstanding ones only)
+* builtin classes
+
+ * New method: Kernel#instance_variable_defined?
+
+ * New method: Module#class_variable_defined?
+
+ * New feature: Dir::glob() can now take an array of glob patterns.
+
* date
* Updated based on date2 4.0.3.
@@ -98,34 +104,6 @@ with all sufficient information, see the ChangeLog file.
# autoloads digest/md5
md = Digest::MD5.digest("string")
- * See below for new features and compatibility issues.
-
-* nkf
-
- * Updated based on nkf as of 2007-01-28.
-
-* tk
-
- * Updated Tile extension support based on Tile 0.7.8.
-
- * Support --without-X11 configure option for non-X11 versions of
- Tcl/Tk (e.g. Tcl/Tk Aqua).
-
- * New sample script: irbtkw.rbw -- IRB on Ruby/Tk. It has no trouble
- about STDIN blocking on Windows.
-
-=== New methods and features
-
-* builtin classes
-
- * New method: Kernel#instance_variable_defined?
-
- * New method: Module#class_variable_defined?
-
- * New feature: Dir::glob() can now take an array of glob patterns.
-
-* digest
-
* New digest class methods: file
* New digest instance methods: clone, reset, new, inspect,
@@ -139,12 +117,26 @@ with all sufficient information, see the ChangeLog file.
* New option for FileUtils.cp_r(): :remove_destination
+* nkf
+
+ * Updated based on nkf as of 2007-01-28.
+
* thread
* Replaced with much faster mutex implementation in C. The former
implementation, which is slow but considered to be stable, is
available with a configure option `--disable-fastthread'.
+* tk
+
+ * Updated Tile extension support based on Tile 0.7.8.
+
+ * Support --without-X11 configure option for non-X11 versions of
+ Tcl/Tk (e.g. Tcl/Tk Aqua).
+
+ * New sample script: irbtkw.rbw -- IRB on Ruby/Tk. It has no trouble
+ about STDIN blocking on Windows.
+
* webrick
* New method: WEBrick::Cookie.parse_set_cookies()