Skip to content

Commit 473f3ee

Browse files
committed
merge revision(s) 23032:
* lib/test/unit.rb: use Kernel.exit to get rid of using IRB::ExtendCommandBundle#exit. a patch from Dmitry Vazhov by [ruby-core:22986]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@23954 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent fa41658 commit 473f3ee

File tree

3 files changed

+11
-5
lines changed

3 files changed

+11
-5
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Sun Jul 5 03:50:52 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
2+
3+
* lib/test/unit.rb: use Kernel.exit to get rid of using
4+
IRB::ExtendCommandBundle#exit. a patch from Dmitry Vazhov by
5+
[ruby-core:22986].
6+
17
Fri Jul 3 09:05:38 2009 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
28

39
* lib/drb/drb.rb (open_server_inaddr_any): fixed multiple network

lib/test/unit.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,6 @@ def self.run?
275275

276276
at_exit do
277277
unless $! || Test::Unit.run?
278-
exit Test::Unit::AutoRunner.run
278+
Kernel.exit Test::Unit::AutoRunner.run
279279
end
280280
end

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#define RUBY_VERSION "1.8.7"
2-
#define RUBY_RELEASE_DATE "2009-07-03"
2+
#define RUBY_RELEASE_DATE "2009-07-05"
33
#define RUBY_VERSION_CODE 187
4-
#define RUBY_RELEASE_CODE 20090703
5-
#define RUBY_PATCHLEVEL 177
4+
#define RUBY_RELEASE_CODE 20090705
5+
#define RUBY_PATCHLEVEL 178
66

77
#define RUBY_VERSION_MAJOR 1
88
#define RUBY_VERSION_MINOR 8
99
#define RUBY_VERSION_TEENY 7
1010
#define RUBY_RELEASE_YEAR 2009
1111
#define RUBY_RELEASE_MONTH 7
12-
#define RUBY_RELEASE_DAY 3
12+
#define RUBY_RELEASE_DAY 5
1313

1414
#ifdef RUBY_EXTERN
1515
RUBY_EXTERN const char ruby_version[];

0 commit comments

Comments
 (0)