Skip to content

Commit 345d52c

Browse files
committed
merge revision(s) 44585: [Backport ruby#9268]
* lib/net/smtp.rb: [DOC] Remove dead link to RAA by Giorgos Tsiftsis Fixes the following bugs: [Bug ruby#9152] [Bug ruby#9268] [Bug ruby#9394] * lib/open-uri.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@45154 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent b9c0eba commit 345d52c

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Mon Feb 24 12:33:38 2014 Zachary Scott <e@zzak.io>
2+
3+
* lib/net/smtp.rb: [DOC] Remove dead link to RAA by Giorgos Tsiftsis
4+
Fixes the following bugs: [Bug #9152] [Bug #9268] [Bug #9394]
5+
* lib/open-uri.rb: ditto
6+
17
Sat Feb 22 19:14:25 2014 NAKAMURA Usaku <usa@ruby-lang.org>
28

39
* ext/io/console/console.c (console_dev): need read access for conout$

lib/net/smtp.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ class SMTPUnsupportedCommand < ProtocolError
7878
#
7979
# This library does NOT provide functions to compose internet mails.
8080
# You must create them by yourself. If you want better mail support,
81-
# try RubyMail or TMail. You can get both libraries from RAA.
82-
# (http://www.ruby-lang.org/en/raa.html)
81+
# try RubyMail or TMail or search for alternatives in
82+
# {RubyGems.org}[https://rubygems.org/] or {The Ruby
83+
# Toolbox}[https://www.ruby-toolbox.com/].
8384
#
8485
# FYI: the official documentation on internet mail is: [RFC2822] (http://www.ietf.org/rfc/rfc2822.txt).
8586
#

lib/open-uri.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def open(name, *rest, &block) # :doc:
7272
# The environment variables such as http_proxy, https_proxy and ftp_proxy
7373
# are in effect by default. :proxy => nil disables proxy.
7474
#
75-
# open("http://www.ruby-lang.org/en/raa.html", :proxy => nil) {|f|
75+
# open("http://www.ruby-lang.org/en/", :proxy => nil) {|f|
7676
# # ...
7777
# }
7878
#

version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "1.9.3"
2-
#define RUBY_PATCHLEVEL 542
2+
#define RUBY_PATCHLEVEL 543
33

4-
#define RUBY_RELEASE_DATE "2014-02-22"
4+
#define RUBY_RELEASE_DATE "2014-02-24"
55
#define RUBY_RELEASE_YEAR 2014
66
#define RUBY_RELEASE_MONTH 2
7-
#define RUBY_RELEASE_DAY 22
7+
#define RUBY_RELEASE_DAY 24
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)