summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rwxr-xr-xtool/make-snapshot2
-rw-r--r--version.h6
3 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index bb593289b0..428192c673 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Sat Dec 6 18:33:16 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
+
+ * tool/make-snapshot (package): added RM and CP. [ruby-dev:37288]
+
Fri Dec 5 21:45:45 2008 Tadayoshi Funaba <tadf@dotrb.org>
* rational.c (nurat_{to_s,inspect}): performance improvement.
diff --git a/tool/make-snapshot b/tool/make-snapshot
index 25d61a7954..7b257f3d1b 100755
--- a/tool/make-snapshot
+++ b/tool/make-snapshot
@@ -151,6 +151,8 @@ def package(rev, destdir)
f.puts "s,@OBJEXT@,|#_!!_#|o,g"
f.puts "s,@LIBRUBY@,|#_!!_#|liburyb.a,g"
f.puts "s,@LIBRUBY_A@,|#_!!_#|liburyb.a,g"
+ f.puts "s,@RM@,|#_!!_#|rm -f,g"
+ f.puts "s,@CP@,|#_!!_#|cp,g"
}
FileUtils.mkpath(hdrdir = "#{extout}/include/ruby")
File.open("#{hdrdir}/config.h", "w") {}
diff --git a/version.h b/version.h
index 147c36c41c..d01e192c8c 100644
--- a/version.h
+++ b/version.h
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.9.1"
-#define RUBY_RELEASE_DATE "2008-12-05"
+#define RUBY_RELEASE_DATE "2008-12-06"
#define RUBY_VERSION_CODE 191
-#define RUBY_RELEASE_CODE 20081205
+#define RUBY_RELEASE_CODE 20081206
#define RUBY_PATCHLEVEL 0
#define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 1
#define RUBY_RELEASE_YEAR 2008
#define RUBY_RELEASE_MONTH 12
-#define RUBY_RELEASE_DAY 5
+#define RUBY_RELEASE_DAY 6
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];