ruby-changes:64460
From: Hiroshi <ko1@a...>
Date: Tue, 22 Dec 2020 21:45:51 +0900 (JST)
Subject: [ruby-changes:64460] 9b9cbbbc17 (master): Update library versions of the default gems.
https://git.ruby-lang.org/ruby.git/commit/?id=9b9cbbbc17 From 9b9cbbbc17bb5840581c7da37fd0feb0a7d4c1f3 Mon Sep 17 00:00:00 2001 From: Hiroshi SHIBATA <hsbt@r...> Date: Tue, 22 Dec 2020 21:43:30 +0900 Subject: Update library versions of the default gems. They are followed up with https://github.com/ruby/ruby/commit/8fb02b7a97317090e3946e6f2d4a7d034f9699f1 diff --git a/lib/English.gemspec b/lib/English.gemspec index d614f12..ad6eb7a 100644 --- a/lib/English.gemspec +++ b/lib/English.gemspec @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/lib/English.gemspec#L1 Gem::Specification.new do |spec| spec.name = "english" - spec.version = "0.7.0" + spec.version = "0.7.1" spec.authors = ["Yukihiro Matsumoto"] spec.email = ["matz@r..."] diff --git a/lib/benchmark/version.rb b/lib/benchmark/version.rb index d74cc74..90d1a39 100644 --- a/lib/benchmark/version.rb +++ b/lib/benchmark/version.rb @@ -1,3 +1,3 @@ https://github.com/ruby/ruby/blob/trunk/lib/benchmark/version.rb#L1 module Benchmark - VERSION = "0.1.0" + VERSION = "0.1.1" end diff --git a/lib/cgi.rb b/lib/cgi.rb index a125eef..3b53d27 100644 --- a/lib/cgi.rb +++ b/lib/cgi.rb @@ -288,7 +288,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/cgi.rb#L288 # class CGI - VERSION = "0.1.0" + VERSION = "0.2.0" end require 'cgi/core' diff --git a/lib/delegate.rb b/lib/delegate.rb index cf8d39a..a5ae605 100644 --- a/lib/delegate.rb +++ b/lib/delegate.rb @@ -39,7 +39,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/delegate.rb#L39 # Be advised, RDoc will not detect delegated methods. # class Delegator < BasicObject - VERSION = "0.1.0" + VERSION = "0.2.0" kernel = ::Kernel.dup kernel.class_eval do diff --git a/lib/fileutils.rb b/lib/fileutils.rb index 67a3323..a2ad0c0 100644 --- a/lib/fileutils.rb +++ b/lib/fileutils.rb @@ -102,7 +102,7 @@ end https://github.com/ruby/ruby/blob/trunk/lib/fileutils.rb#L102 # <tt>:verbose</tt> flags to methods in FileUtils. # module FileUtils - VERSION = "1.4.1" + VERSION = "1.5.0" def self.private_module_function(name) #:nodoc: module_function name diff --git a/lib/forwardable.rb b/lib/forwardable.rb index c720feb..fb24b8c 100644 --- a/lib/forwardable.rb +++ b/lib/forwardable.rb @@ -112,7 +112,7 @@ module Forwardable https://github.com/ruby/ruby/blob/trunk/lib/forwardable.rb#L112 require 'forwardable/impl' # Version of +forwardable.rb+ - VERSION = "1.3.1" + VERSION = "1.3.2" FORWARDABLE_VERSION = VERSION @debug = nil diff --git a/lib/forwardable/forwardable.gemspec b/lib/forwardable/forwardable.gemspec index 122dd23..523b8ee 100644 --- a/lib/forwardable/forwardable.gemspec +++ b/lib/forwardable/forwardable.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/lib/forwardable/forwardable.gemspec#L19 spec.licenses = ["Ruby", "BSD-2-Clause"] spec.required_ruby_version = '>= 2.4.0' - spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb", "lib/forwardable/version.rb"] + spec.files = ["forwardable.gemspec", "lib/forwardable.rb", "lib/forwardable/impl.rb"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] diff --git a/lib/getoptlong.rb b/lib/getoptlong.rb index 6d4922e..53b80ff 100644 --- a/lib/getoptlong.rb +++ b/lib/getoptlong.rb @@ -86,7 +86,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/getoptlong.rb#L86 # class GetoptLong # Version. - VERSION = "0.1.0" + VERSION = "0.1.1" # # Orderings. diff --git a/lib/logger/version.rb b/lib/logger/version.rb index f90ce94..e0f7183 100644 --- a/lib/logger/version.rb +++ b/lib/logger/version.rb @@ -1,5 +1,5 @@ https://github.com/ruby/ruby/blob/trunk/lib/logger/version.rb#L1 # frozen_string_literal: true class Logger - VERSION = "1.4.2" + VERSION = "1.4.3" end diff --git a/lib/mutex_m.gemspec b/lib/mutex_m.gemspec index 484db2c..f614dcd 100644 --- a/lib/mutex_m.gemspec +++ b/lib/mutex_m.gemspec @@ -16,7 +16,7 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/lib/mutex_m.gemspec#L16 spec.homepage = "https://github.com/ruby/mutex_m" spec.licenses = ["Ruby", "BSD-2-Clause"] - spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/mutex_m.rb", "mutex_m.gemspec"] + spec.files = ["Gemfile", "LICENSE.txt", "README.md", "Rakefile", "lib/mutex_m.rb", "mutex_m.gemspec"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] diff --git a/lib/mutex_m.rb b/lib/mutex_m.rb index 07f5a9a..18b6256 100644 --- a/lib/mutex_m.rb +++ b/lib/mutex_m.rb @@ -40,7 +40,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/mutex_m.rb#L40 # module Mutex_m - VERSION = "0.1.0" + VERSION = "0.1.1" def Mutex_m.define_aliases(cl) # :nodoc: cl.module_eval %q{ diff --git a/lib/net/ftp.rb b/lib/net/ftp.rb index bd8c8ab..88e8655 100644 --- a/lib/net/ftp.rb +++ b/lib/net/ftp.rb @@ -85,7 +85,7 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/ftp.rb#L85 end # :stopdoc: - VERSION = "0.1.0" + VERSION = "0.1.1" FTP_PORT = 21 CRLF = "\r\n" DEFAULT_BLOCKSIZE = BufferedIO::BUFSIZE diff --git a/lib/net/http.rb b/lib/net/http.rb index fe856ac..34fc635 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -388,7 +388,7 @@ module Net #:nodoc: https://github.com/ruby/ruby/blob/trunk/lib/net/http.rb#L388 class HTTP < Protocol # :stopdoc: - VERSION = "0.1.0" + VERSION = "0.1.1" Revision = %q$Revision$.split[1] HTTPVersion = '1.1' begin diff --git a/lib/net/imap.rb b/lib/net/imap.rb index ae23c0a..505b4c8 100644 --- a/lib/net/imap.rb +++ b/lib/net/imap.rb @@ -201,7 +201,7 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/imap.rb#L201 # Unicode", RFC 2152, May 1997. # class IMAP < Protocol - VERSION = "0.1.0" + VERSION = "0.1.1" include MonitorMixin if defined?(OpenSSL::SSL) diff --git a/lib/net/pop.rb b/lib/net/pop.rb index ed19639..8e75846 100644 --- a/lib/net/pop.rb +++ b/lib/net/pop.rb @@ -195,7 +195,7 @@ module Net https://github.com/ruby/ruby/blob/trunk/lib/net/pop.rb#L195 # class POP3 < Protocol # version of this library - VERSION = "0.1.0" + VERSION = "0.1.1" # # Class Parameters diff --git a/lib/observer.rb b/lib/observer.rb index fec308b..ef70e39 100644 --- a/lib/observer.rb +++ b/lib/observer.rb @@ -136,7 +136,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/observer.rb#L136 # ticker.add_observer(warner, :call) # ticker.run module Observable - VERSION = "0.1.0" + VERSION = "0.1.1" # # Add +observer+ as an observer on this object. So that it will receive diff --git a/lib/open3.rb b/lib/open3.rb index 98213c9..c574696 100644 --- a/lib/open3.rb +++ b/lib/open3.rb @@ -30,7 +30,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/open3.rb#L30 # module Open3 - VERSION = "0.1.0" + VERSION = "0.1.1" # Open stdin, stdout, and stderr streams and start external executable. # In addition, a thread to wait for the started process is created. diff --git a/lib/ostruct/ostruct.gemspec b/lib/ostruct/ostruct.gemspec index 14b0b5e..f69a858 100644 --- a/lib/ostruct/ostruct.gemspec +++ b/lib/ostruct/ostruct.gemspec @@ -19,7 +19,7 @@ Gem::Specification.new do |spec| https://github.com/ruby/ruby/blob/trunk/lib/ostruct/ostruct.gemspec#L19 spec.licenses = ["Ruby", "BSD-2-Clause"] spec.required_ruby_version = ">= 2.5.0" - spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "lib/ostruct/version.rb", "ostruct.gemspec"] + spec.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "ostruct.gemspec"] spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] diff --git a/lib/pstore.rb b/lib/pstore.rb index f4e6e12..a46bcb8 100644 --- a/lib/pstore.rb +++ b/lib/pstore.rb @@ -92,7 +92,7 @@ require "digest" https://github.com/ruby/ruby/blob/trunk/lib/pstore.rb#L92 # Needless to say, if you're storing valuable data with PStore, then you should # backup the PStore files from time to time. class PStore - VERSION = "0.1.0" + VERSION = "0.1.1" RDWR_ACCESS = {mode: IO::RDWR | IO::CREAT | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze RD_ACCESS = {mode: IO::RDONLY | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze diff --git a/lib/resolv.gemspec b/lib/resolv.gemspec index b80fc2a..ccfe4c9 100644 --- a/lib/resolv.gemspec +++ b/lib/resolv.gemspec @@ -1,6 +1,6 @@ https://github.com/ruby/ruby/blob/trunk/lib/resolv.gemspec#L1 Gem::Specification.new do |spec| spec.name = "resolv" - spec.version = "0.1.0" + spec.version = "0.2.0" spec.authors = ["Tanaka Akira"] spec.email = ["akr@f..."] diff --git a/lib/singleton.rb b/lib/singleton.rb index 8d53323..07420d2 100644 --- a/lib/singleton.rb +++ b/lib/singleton.rb @@ -92,7 +92,7 @@ https://github.com/ruby/ruby/blob/trunk/lib/singleton.rb#L92 # p a.strip # => nil # module Singleton - VERSION = "0.1.0" + VERSION = "0.1.1" # Raises a TypeError to prevent cloning. def clone diff --git a/lib/tempfile.gemspec b/lib/tempfile.gemspec index 6405749..4917b99 100644 --- a/lib/tempfile.gemspec +++ b/lib/tempfile.gemspec @@ -1,14 +1,14 @@ https://github.com/ruby/ruby/blob/trunk/lib/tempfile.gemspec#L1 Gem::Specification.new do |spec| spec.name = "tempfile" - spec.version = "0.1.0" - spec.authors = ["Yukihiro Matsumoto"] - spec.email = ["matz@r..."] + spec.version = "0.1.1" + spec.authors = (... truncated) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/