Commit 1a9bdfcd authored by Hiroshi Mimaki's avatar Hiroshi Mimaki

Update release date.

parent 11212096
......@@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option:
```bash
$ mrdb --version
mruby 2.1.2 (2020-07-10)
mruby 2.1.2 (2020-08-06)
```
## 2.2 Basic Operation
......
......@@ -38,7 +38,7 @@ puts [1,2,3]
3
```
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
```
[1, 2, 3]
......@@ -61,7 +61,7 @@ end
`ZeroDivisionError` is raised.
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
No exception is raised.
......@@ -89,7 +89,7 @@ p Liste.new "foobar"
` [] `
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
`ArgumentError` is raised.
......@@ -119,7 +119,7 @@ false
true
```
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
```
true
......@@ -156,7 +156,7 @@ p 'ok'
ok
```
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
```
test.rb:8: undefined method 'test_func' (NoMethodError)
......@@ -178,7 +178,7 @@ defined?(Foo)
nil
```
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
`NameError` is raised.
......@@ -195,7 +195,7 @@ alias $a $__a__
` nil `
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
Syntax error
......@@ -217,7 +217,7 @@ end
`ArgumentError` is raised.
The re-defined `+` operator does not accept any arguments.
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
` 'ab' `
Behavior of the operator wasn't changed.
......@@ -233,7 +233,7 @@ $ ruby -e 'puts Proc.new {}.binding'
#<Binding:0x00000e9deabb9950>
```
#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]
```
$ ./bin/mruby -e 'puts Proc.new {}.binding'
......
......@@ -67,12 +67,12 @@ MRB_BEGIN_DECL
/*
* Release month.
*/
#define MRUBY_RELEASE_MONTH 7
#define MRUBY_RELEASE_MONTH 8
/*
* Release day.
*/
#define MRUBY_RELEASE_DAY 10
#define MRUBY_RELEASE_DAY 6
/*
* Release date as a string.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment