summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rwxr-xr-xtool/rbinstall.rb2
-rw-r--r--version.h2
3 files changed, 10 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4d1161934d..0c20792ead 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sun Sep 15 22:59:04 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * tool/rbinstall.rb (Gem::Specification#initialize): default date to
+ RUBY_RELEASE_DATE. [ruby-core:57072] [Bug #8878]
+
+ * tool/rbinstall.rb (Gem::Specification#to_ruby): add date.
+
Sun Sep 15 22:55:44 2013 Zachary Scott <e@zzak.io>
* hash.c (rb_hash_aset): [DOC] Document key dup patch by @kachick
diff --git a/tool/rbinstall.rb b/tool/rbinstall.rb
index 92e54c6774..9d10f59a5d 100755
--- a/tool/rbinstall.rb
+++ b/tool/rbinstall.rb
@@ -555,6 +555,7 @@ module Gem
super
yield(self) if defined?(yield)
self.executables ||= []
+ self.date ||= RUBY_RELEASE_DATE
end
def self.load(path)
@@ -568,6 +569,7 @@ module Gem
Gem::Specification.new do |s|
s.name = #{name.dump}
s.version = #{version.dump}
+ s.date = #{date.dump}
s.summary = #{summary.dump}
s.description = #{description.dump}
s.homepage = #{homepage.dump}
diff --git a/version.h b/version.h
index c36c1ee451..cdbe34c70a 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.0.0"
#define RUBY_RELEASE_DATE "2013-09-15"
-#define RUBY_PATCHLEVEL 315
+#define RUBY_PATCHLEVEL 316
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 9