summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--parse.y4
-rw-r--r--version.h6
3 files changed, 10 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index e996741251..87d448f614 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Mon Nov 5 01:20:33 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * parse.y (call_args): remove "parenthesize argument(s) for future
+ version" warning. when I added this warning, I had a plan to
+ reimplement the parser that is simpler than the current one.
+ since we abandoned the plan, warning no longer required.
+
Fri Nov 2 00:13:51 2007 Yukihiro Matsumoto <matz@ruby-lang.org>
* array.c (rb_ary_assoc): check and convert inner arrays (assocs)
diff --git a/parse.y b/parse.y
index f6c6311efa..4aa8035f64 100644
--- a/parse.y
+++ b/parse.y
@@ -1245,7 +1245,6 @@ arg_value : arg
aref_args : none
| command opt_nl
{
- rb_warn("parenthesize argument(s) for future version");
$$ = NEW_LIST($1);
}
| args trailer
@@ -1278,12 +1277,10 @@ paren_args : '(' none ')'
}
| '(' block_call opt_nl ')'
{
- rb_warn("parenthesize argument for future version");
$$ = NEW_LIST($2);
}
| '(' args ',' block_call opt_nl ')'
{
- rb_warn("parenthesize argument for future version");
$$ = list_append($2, $4);
}
;
@@ -1294,7 +1291,6 @@ opt_paren_args : none
call_args : command
{
- rb_warn("parenthesize argument(s) for future version");
$$ = NEW_LIST($1);
}
| args opt_block_arg
diff --git a/version.h b/version.h
index 613a81483e..c10f0fca3c 100644
--- a/version.h
+++ b/version.h
@@ -1,7 +1,7 @@
#define RUBY_VERSION "1.8.6"
-#define RUBY_RELEASE_DATE "2007-11-02"
+#define RUBY_RELEASE_DATE "2007-11-05"
#define RUBY_VERSION_CODE 186
-#define RUBY_RELEASE_CODE 20071102
+#define RUBY_RELEASE_CODE 20071105
#define RUBY_PATCHLEVEL 5000
#define RUBY_VERSION_MAJOR 1
@@ -9,7 +9,7 @@
#define RUBY_VERSION_TEENY 6
#define RUBY_RELEASE_YEAR 2007
#define RUBY_RELEASE_MONTH 11
-#define RUBY_RELEASE_DAY 2
+#define RUBY_RELEASE_DAY 5
#ifdef RUBY_EXTERN
RUBY_EXTERN const char ruby_version[];