Skip to content

Commit

Permalink
Update version and release date. (mruby 3.1.0 (2022-05-12))
Browse files Browse the repository at this point in the history
  • Loading branch information
mimaki committed May 12, 2022
1 parent 242a7f1 commit 1bec339
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Expand Up @@ -6,7 +6,7 @@

DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "mruby"
PROJECT_NUMBER = 3.0.0
PROJECT_NUMBER = 3.1.0

PROJECT_BRIEF = "mruby is the lightweight implementation of the Ruby language"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -20,7 +20,7 @@ of the Ministry of Economy, Trade and Industry of Japan.

## How to get mruby

The release candidate version 3.1.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/3.1.0-rc2.zip](https://github.com/mruby/mruby/archive/3.1.0-rc2.zip)
The stable version 3.1.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/3.1.0.zip](https://github.com/mruby/mruby/archive/3.1.0.zip)

The latest development version of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/zipball/master](https://github.com/mruby/mruby/zipball/master)

Expand Down
2 changes: 1 addition & 1 deletion doc/guides/debugger.md
Expand Up @@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option:

```bash
$ mrdb --version
mruby 3.0.0 (2021-03-05)
mruby 3.1.0 (2022-05-12)
```

## 2.2 Basic Operation
Expand Down
16 changes: 8 additions & 8 deletions doc/limitations.md
Expand Up @@ -30,7 +30,7 @@ end

`ZeroDivisionError` is raised.

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

`RuntimeError` is raised instead of `ZeroDivisionError`. To re-raise the exception, you have to do:

Expand Down Expand Up @@ -66,7 +66,7 @@ p Liste.new "foobar"

` [] `

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

`ArgumentError` is raised.

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

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

```
true
Expand Down Expand Up @@ -133,7 +133,7 @@ p 'ok'
ok
```

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

```
test.rb:8: undefined method 'test_func' (NoMethodError)
Expand All @@ -155,7 +155,7 @@ defined?(Foo)
nil
```

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

`NameError` is raised.

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

` nil `

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

Syntax error

Expand All @@ -194,7 +194,7 @@ end
`ArgumentError` is raised.
The re-defined `+` operator does not accept any arguments.

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

` 'ab' `
Behavior of the operator wasn't changed.
Expand All @@ -210,7 +210,7 @@ $ ruby -e 'puts Proc.new {}.binding'
#<Binding:0x00000e9deabb9950>
```

#### mruby [3.0.0 (2021-03-05)]
#### mruby [3.1.0 (2022-05-12)]

```
$ ./bin/mruby -e 'puts Proc.new {}.binding'
Expand Down
6 changes: 3 additions & 3 deletions include/mruby/version.h
Expand Up @@ -57,7 +57,7 @@ MRB_BEGIN_DECL
/*
* Patch level string. (optional)
*/
#define MRUBY_PATCHLEVEL_STR "RC2"
#define MRUBY_PATCHLEVEL_STR ""

#ifndef MRUBY_PATCHLEVEL_STR
# if MRUBY_PATCHLEVEL < 0
Expand Down Expand Up @@ -85,12 +85,12 @@ MRB_BEGIN_DECL
/*
* Release month.
*/
#define MRUBY_RELEASE_MONTH 3
#define MRUBY_RELEASE_MONTH 5

/*
* Release day.
*/
#define MRUBY_RELEASE_DAY 31
#define MRUBY_RELEASE_DAY 12

/*
* Release date as a string.
Expand Down

0 comments on commit 1bec339

Please sign in to comment.