Commit 0f45836b authored by mimaki's avatar mimaki

Update version and release date. (mruby 3.0.0 (2021-03-05))

parent f5d3d89a
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
DOXYFILE_ENCODING = UTF-8 DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "mruby" PROJECT_NAME = "mruby"
PROJECT_NUMBER = 2.1.2 PROJECT_NUMBER = 3.0.0
PROJECT_BRIEF = "mruby is the lightweight implementation of the Ruby language" PROJECT_BRIEF = "mruby is the lightweight implementation of the Ruby language"
......
...@@ -17,9 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan. ...@@ -17,9 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan.
## How to get mruby ## How to get mruby
The releace candidate version 3.0.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/3.0.0-rc.zip](https://github.com/mruby/mruby/archive/3.0.0-rc.zip) The stable version 3.0.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/3.0.0.zip](https://github.com/mruby/mruby/archive/3.0.0.zip)
The stable version 2.1.2 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/2.1.2.zip](https://github.com/mruby/mruby/archive/2.1.2.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) 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)
......
...@@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option: ...@@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option:
```bash ```bash
$ mrdb --version $ mrdb --version
mruby 2.1.2 (2020-08-06) mruby 3.0.0 (2021-03-05)
``` ```
## 2.2 Basic Operation ## 2.2 Basic Operation
......
...@@ -29,7 +29,7 @@ puts [1,2,3] ...@@ -29,7 +29,7 @@ puts [1,2,3]
3 3
``` ```
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
``` ```
[1, 2, 3] [1, 2, 3]
...@@ -52,7 +52,7 @@ end ...@@ -52,7 +52,7 @@ end
`ZeroDivisionError` is raised. `ZeroDivisionError` is raised.
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
No exception is raised. Instead you have to do: No exception is raised. Instead you have to do:
...@@ -88,7 +88,7 @@ p Liste.new "foobar" ...@@ -88,7 +88,7 @@ p Liste.new "foobar"
` [] ` ` [] `
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
`ArgumentError` is raised. `ArgumentError` is raised.
...@@ -118,7 +118,7 @@ false ...@@ -118,7 +118,7 @@ false
true true
``` ```
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
``` ```
true true
...@@ -155,7 +155,7 @@ p 'ok' ...@@ -155,7 +155,7 @@ p 'ok'
ok ok
``` ```
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
``` ```
test.rb:8: undefined method 'test_func' (NoMethodError) test.rb:8: undefined method 'test_func' (NoMethodError)
...@@ -177,7 +177,7 @@ defined?(Foo) ...@@ -177,7 +177,7 @@ defined?(Foo)
nil nil
``` ```
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
`NameError` is raised. `NameError` is raised.
...@@ -194,7 +194,7 @@ alias $a $__a__ ...@@ -194,7 +194,7 @@ alias $a $__a__
` nil ` ` nil `
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
Syntax error Syntax error
...@@ -216,7 +216,7 @@ end ...@@ -216,7 +216,7 @@ end
`ArgumentError` is raised. `ArgumentError` is raised.
The re-defined `+` operator does not accept any arguments. The re-defined `+` operator does not accept any arguments.
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
` 'ab' ` ` 'ab' `
Behavior of the operator wasn't changed. Behavior of the operator wasn't changed.
...@@ -232,7 +232,7 @@ $ ruby -e 'puts Proc.new {}.binding' ...@@ -232,7 +232,7 @@ $ ruby -e 'puts Proc.new {}.binding'
#<Binding:0x00000e9deabb9950> #<Binding:0x00000e9deabb9950>
``` ```
#### mruby [2.1.2 (2020-08-06)] #### mruby [3.0.0 (2021-03-05)]
``` ```
$ ./bin/mruby -e 'puts Proc.new {}.binding' $ ./bin/mruby -e 'puts Proc.new {}.binding'
...@@ -253,7 +253,7 @@ $ ruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)' ...@@ -253,7 +253,7 @@ $ ruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)'
[[{"a"=>1}], {:b=>2}] [[{"a"=>1}], {:b=>2}]
``` ```
#### mruby [mruby 2.1.2] #### mruby [3.0.0 (2021-03-05)]
``` ```
$ ./bin/mruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)' $ ./bin/mruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)'
......
...@@ -57,7 +57,7 @@ MRB_BEGIN_DECL ...@@ -57,7 +57,7 @@ MRB_BEGIN_DECL
/* /*
* Patch level string. (optional) * Patch level string. (optional)
*/ */
#define MRUBY_PATCHLEVEL_STR "RC" #define MRUBY_PATCHLEVEL_STR ""
#ifndef MRUBY_PATCHLEVEL_STR #ifndef MRUBY_PATCHLEVEL_STR
# if MRUBY_PATCHLEVEL < 0 # if MRUBY_PATCHLEVEL < 0
...@@ -85,12 +85,12 @@ MRB_BEGIN_DECL ...@@ -85,12 +85,12 @@ MRB_BEGIN_DECL
/* /*
* Release month. * Release month.
*/ */
#define MRUBY_RELEASE_MONTH 2 #define MRUBY_RELEASE_MONTH 3
/* /*
* Release day. * Release day.
*/ */
#define MRUBY_RELEASE_DAY 3 #define MRUBY_RELEASE_DAY 5
/* /*
* Release date as a string. * 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