Skip to content

Commit

Permalink
Update release date.
Browse files Browse the repository at this point in the history
  • Loading branch information
mimaki committed Aug 6, 2020
1 parent 1121209 commit 1a9bdfc
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion doc/guides/debugger.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions doc/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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.

Expand Down Expand Up @@ -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.

Expand Down Expand Up @@ -119,7 +119,7 @@ false
true
```

#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]

```
true
Expand Down Expand Up @@ -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)
Expand All @@ -178,7 +178,7 @@ defined?(Foo)
nil
```

#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]

`NameError` is raised.

Expand All @@ -195,7 +195,7 @@ alias $a $__a__

` nil `

#### mruby [2.1.2 (2020-07-10)]
#### mruby [2.1.2 (2020-08-06)]

Syntax error

Expand All @@ -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.
Expand All @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions include/mruby/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 1a9bdfc

Please sign in to comment.