Skip to content

Commit 937964f

Browse files
authored
Merge URI-0.13.1 for Ruby 3.3 (ruby#11466)
Merge URI-0.13.1
1 parent ac8d50e commit 937964f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

lib/uri/common.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ module URI
1919
Parser = RFC2396_Parser
2020
RFC3986_PARSER = RFC3986_Parser.new
2121
Ractor.make_shareable(RFC3986_PARSER) if defined?(Ractor)
22+
RFC2396_PARSER = RFC2396_Parser.new
23+
Ractor.make_shareable(RFC2396_PARSER) if defined?(Ractor)
2224

2325
# URI::Parser.new
2426
DEFAULT_PARSER = Parser.new

lib/uri/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module URI
22
# :stopdoc:
3-
VERSION_CODE = '001300'.freeze
3+
VERSION_CODE = '001301'.freeze
44
VERSION = VERSION_CODE.scan(/../).collect{|n| n.to_i}.join('.').freeze
55
# :startdoc:
66
end

0 commit comments

Comments
 (0)