summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-25 15:10:26 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-25 15:10:26 +0000
commitabcff642ef12617660b42d269238383c0127f713 (patch)
treec76de87aad7f20365fa787bd66577708600cbf65
parent68c8f0f27eae9b8f66e5ca509c0e445acb3fe355 (diff)
Sort entries.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@28439 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--NEWS85
1 files changed, 39 insertions, 46 deletions
diff --git a/NEWS b/NEWS
index 0e98e56ffa..e4e4f59856 100644
--- a/NEWS
+++ b/NEWS
@@ -154,22 +154,34 @@ with all sufficient information, see the ChangeLog file.
New methods.
* dbm
+* gdbm
+* sdbm
- DBM#key
+ * {DBM,GDBM,SDBM}#key
- Renamed from DBM#index.
+ Renamed from #index.
-* gdbm
+* digest
- GDBM#key
+ * Digest::Class.base64digest
+ * Digest::Instance#base64digest
+ * Digest::Instance#base64digest!
- Renamed from GDBM#index.
+ New methods.
* fileutils
* New option for FileUtils.rmdir(): :parents
+* logger
+
+ * imported upstream version (logger/1.2.7)
+ * do not raise an exception even if log writing failed.
+ * do not raise ShiftingError if an aged file already exists.
+ (no ShiftingError will be raised from 1.2.7, just warn() instead)
+
* matrix
+
* API change to adhere strictly to mathematical definitions:
* Matrices must now be rectangular.
* trace, regular?, singular? are defined only for square matrices
@@ -206,40 +218,14 @@ with all sufficient information, see the ChangeLog file.
* Performace improved by making overall code optimization and
introducing Fixnum#gcd implemented in C.
-* sdbm
-
- SDBM#key
-
- Renamed from SDBM#index.
-
-* securerandom
-
- SecureRandom.uuid
-
- New method to generate a v4 random UUID.
-
-* set
-
- Set#classify
- Set#collect!
- Set#delete_if
- Set#divide
- Set#reject!
- SortedSet#delete_if
-
- Return an enumerator if no block is given.
-
-* stringio
+* rexml
- * StringIO#ungetbyte
+ * REXML::Document.entity_expansion_limit=
- Added as an alias to #ungetc.
+ New method to set the entity expansion limit. By default the limit is
+ set to 10000. See the following URL for details.
-* digest
- * new methods:
- * Digest::Class.base64digest
- * Digest::Instance#base64digest
- * Digest::Instance#base64digest!
+ http://www.ruby-lang.org/en/news/2008/08/23/dos-vulnerability-in-rexml/
* rss
@@ -260,21 +246,28 @@ with all sufficient information, see the ChangeLog file.
* RSS::Maker: item.guid.permanent_link=
* new alias of item.guid.isPermaLink=
-* REXML
+* securerandom
- * REXML::Document.entity_expansion_limit=
+ SecureRandom.uuid
- New method to set the entity expansion limit. By default the limit is
- set to 10000. See the following URL for details.
+ New method to generate a v4 random UUID.
- http://www.ruby-lang.org/en/news/2008/08/23/dos-vulnerability-in-rexml/
+* set
-* logger
+ Set#classify
+ Set#collect!
+ Set#delete_if
+ Set#divide
+ Set#reject!
+ SortedSet#delete_if
- * imported upstream version (logger/1.2.7)
- * do not raise an exception even if log writing failed.
- * do not raise ShiftingError if an aged file already exists.
- (no ShiftingError will be raised from 1.2.7, just warn() instead)
+ Return an enumerator if no block is given.
+
+* stringio
+
+ * StringIO#ungetbyte
+
+ Added as an alias to #ungetc.
=== Compatibility issues (excluding feature bug fixes)