summaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorHiroshi Mimaki <[email protected]>2018-04-27 11:30:30 +0900
committerHiroshi Mimaki <[email protected]>2018-04-27 11:30:30 +0900
commit023070a6396233974785a8fd5735b9380a884f27 (patch)
tree0bd36eacade903f44517d83a098b4a8f09328ea5 /doc
parent54905e98cfeb9fcce3a79a3c3b86cc11e659dd42 (diff)
downloadmruby-023070a6396233974785a8fd5735b9380a884f27.tar.gz
mruby-023070a6396233974785a8fd5735b9380a884f27.zip
Set the mruby-1.4.1 release date to `2018-4-27`.1.4.1
Diffstat (limited to 'doc')
-rw-r--r--doc/guides/debugger.md2
-rw-r--r--doc/limitations.md14
2 files changed, 8 insertions, 8 deletions
diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md
index a41b6ce45..1cc7a9a39 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.4.0 (2018-1-16)
+mruby 1.4.1 (2018-4-27)
```
## 2.2 Basic Operation
diff --git a/doc/limitations.md b/doc/limitations.md
index 855ae16ee..9d8924cff 100644
--- a/doc/limitations.md
+++ b/doc/limitations.md
@@ -38,7 +38,7 @@ puts [1,2,3]
3
```
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
```
[1, 2, 3]
@@ -61,7 +61,7 @@ end
```ZeroDivisionError``` is raised.
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
No exception is raised.
@@ -89,7 +89,7 @@ p Liste.new "foobar"
``` [] ```
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
```ArgumentError``` is raised.
@@ -119,7 +119,7 @@ false
true
```
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
```
true
@@ -142,7 +142,7 @@ defined?(Foo)
nil
```
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
```NameError``` is raised.
@@ -159,7 +159,7 @@ alias $a $__a__
``` nil ```
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
Syntax error
@@ -181,7 +181,7 @@ end
```ArgumentError``` is raised.
The re-defined ```+``` operator does not accept any arguments.
-#### mruby [1.4.0 (2018-1-16)]
+#### mruby [1.4.1 (2018-4-27)]
``` 'ab' ```
Behavior of the operator wasn't changed.