diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/irb/ext/save-history.rb | 1 | ||||
| -rw-r--r-- | version.h | 6 |
3 files changed, 9 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Fri Apr 15 14:27:48 2016 NARUSE, Yui <naruse@ruby-lang.org> + + * lib/irb/ext/save-history.rb: suppress warning: method redefined; + discarding old save_history=. + Tue Apr 12 16:15:39 2016 NARUSE, Yui <naruse@ruby-lang.org> * configure.in: improve ICC (Intel C Compiler) support. diff --git a/lib/irb/ext/save-history.rb b/lib/irb/ext/save-history.rb index 236f00fb93..d6e9be7415 100644 --- a/lib/irb/ext/save-history.rb +++ b/lib/irb/ext/save-history.rb @@ -27,6 +27,7 @@ module IRB IRB.conf[:SAVE_HISTORY] end + remove_method :save_history= # Sets <code>IRB.conf[:SAVE_HISTORY]</code> to the given +val+ and calls # #init_save_history with this context. # @@ -1,10 +1,10 @@ #define RUBY_VERSION "2.3.0" -#define RUBY_RELEASE_DATE "2016-04-12" -#define RUBY_PATCHLEVEL 78 +#define RUBY_RELEASE_DATE "2016-04-15" +#define RUBY_PATCHLEVEL 79 #define RUBY_RELEASE_YEAR 2016 #define RUBY_RELEASE_MONTH 4 -#define RUBY_RELEASE_DAY 12 +#define RUBY_RELEASE_DAY 15 #include "ruby/version.h" |
