summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorHiroshi Mimaki <[email protected]>2017-07-04 09:15:16 +0900
committerHiroshi Mimaki <[email protected]>2017-07-04 09:15:16 +0900
commit277391e1b292d369ed47999c7ac1c45f3e0be699 (patch)
tree648b9802f2cb0ad1dda35c2b711d98e5435c0ec0 /doc
parentba1cd56ffa66ea9186d024c5126896746454428a (diff)
downloadmruby-277391e1b292d369ed47999c7ac1c45f3e0be699.tar.gz
mruby-277391e1b292d369ed47999c7ac1c45f3e0be699.zip
Set the mruby-1.3.0 release date to `2017-7-4`.1.3.0
Diffstat (limited to 'doc')
-rw-r--r--doc/guides/debugger.md2
-rw-r--r--doc/limitations.md16
2 files changed, 9 insertions, 9 deletions
diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md
index 366701c88..72f2c2b32 100644
--- a/doc/guides/debugger.md
+++ b/doc/guides/debugger.md
@@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option:
```bash
$ mrdb --version
-mruby 1.2.0 (2014-11-17)
+mruby 1.3.0 (2017-7-4)
```
## 2.2 Basic Operation
diff --git a/doc/limitations.md b/doc/limitations.md
index c15b3ba81..db8db9a5c 100644
--- a/doc/limitations.md
+++ b/doc/limitations.md
@@ -38,7 +38,7 @@ puts [1,2,3]
3
```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```
[1, 2, 3]
@@ -61,7 +61,7 @@ end
```ZeroDivisionError``` is raised.
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
No exception is raised.
@@ -77,7 +77,7 @@ def test; eval 'test'; end; test
```SystemStackError``` is raised.
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
Segmentation fault.
@@ -105,7 +105,7 @@ p Liste.new "foobar"
``` [] ```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```ArgumentError``` is raised.
@@ -135,7 +135,7 @@ false
true
```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```
true
@@ -158,7 +158,7 @@ defined?(Foo)
nil
```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
```NameError``` is raised.
@@ -175,7 +175,7 @@ alias $a $__a__
``` nil ```
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
Syntax error
@@ -197,7 +197,7 @@ end
```ArgumentError``` is raised.
The re-defined ```+``` operator does not accept any arguments.
-#### mruby [1.2.0 (2015-11-17)]
+#### mruby [1.3.0 (2017-7-4)]
``` 'ab' ```
Behavior of the operator wasn't changed.