File tree Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Expand file tree Collapse file tree 3 files changed +12
-7
lines changed Original file line number Diff line number Diff line change
1
+ Sun Jan 11 11:31:52 2009 Shugo Maeda <shugo@ruby-lang.org>
2
+
3
+ * lib/net/ftp.rb (chdir): handle 5xx errors correctly.
4
+ backported from trunk. fixed [ruby-core:18057].
5
+
1
6
Fri Jan 9 19:22:24 2009 Shugo Maeda <shugo@ruby-lang.org>
2
7
3
8
* lib/net/imap.rb (disconnect): do not refer SSL::SSLSocket for
Original file line number Diff line number Diff line change @@ -664,9 +664,9 @@ def chdir(dirname)
664
664
begin
665
665
voidcmd ( "CDUP" )
666
666
return
667
- rescue FTPPermError
668
- if $! [ 0 , 3 ] != "500"
669
- raise FTPPermError , $!
667
+ rescue FTPPermError => e
668
+ if e . message [ 0 , 3 ] != "500"
669
+ raise e
670
670
end
671
671
end
672
672
end
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.8.6"
2
- #define RUBY_RELEASE_DATE "2009-01-09 "
2
+ #define RUBY_RELEASE_DATE "2009-01-11 "
3
3
#define RUBY_VERSION_CODE 186
4
- #define RUBY_RELEASE_CODE 20090109
5
- #define RUBY_PATCHLEVEL 294
4
+ #define RUBY_RELEASE_CODE 20090111
5
+ #define RUBY_PATCHLEVEL 295
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
9
9
#define RUBY_VERSION_TEENY 6
10
10
#define RUBY_RELEASE_YEAR 2009
11
11
#define RUBY_RELEASE_MONTH 1
12
- #define RUBY_RELEASE_DAY 9
12
+ #define RUBY_RELEASE_DAY 11
13
13
14
14
#ifdef RUBY_EXTERN
15
15
RUBY_EXTERN const char ruby_version [];
You can’t perform that action at this time.
0 commit comments