1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* NEWS: add description of incompatibility introduced by r42396.

[ruby-core:56329] [Bug #8722]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shugo 2013-08-08 05:56:01 +00:00
parent a9a4da925c
commit 7b04639573
2 changed files with 12 additions and 0 deletions

View file

@ -1,3 +1,8 @@
Thu Aug 8 14:54:18 2013 Shugo Maeda <shugo@ruby-lang.org>
* NEWS: add description of incompatibility introduced by r42396.
[ruby-core:56329] [Bug #8722]
Thu Aug 8 14:50:36 2013 NARUSE, Yui <naruse@ruby-lang.org>
* common.mk (mini): portable target to build miniruby

7
NEWS
View file

@ -76,6 +76,13 @@ with all sufficient information, see the ChangeLog file.
* incompatible changes:
* open ignore internal encoding if external encoding is ASCII-8BIT.
* Kernel#eval, Kernel#instance_eval, and Module#module_eval.
* Copies the scope information of the original environment, which means
that private, protected, public, and module_function without arguments
do not affect the environment outside the eval string.
For example, `class Foo; eval "private"; def foo; end; end' doesn't make
Foo#foo private.
* Kernel#untrusted?, untrust, and trust
* These methods are deprecated and their behavior is same as tainted?,
taint, and untaint, respectively. If $VERBOSE is true, they show warnings.