summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--Doxyfile2
-rw-r--r--README.md4
-rw-r--r--doc/guides/debugger.md2
-rw-r--r--doc/limitations.md20
-rw-r--r--include/mruby/version.h6
5 files changed, 16 insertions, 18 deletions
diff --git a/Doxyfile b/Doxyfile
index 626368e5a..cb0bf5546 100644
--- a/Doxyfile
+++ b/Doxyfile
@@ -6,7 +6,7 @@
DOXYFILE_ENCODING = UTF-8
PROJECT_NAME = "mruby"
-PROJECT_NUMBER = 2.1.2
+PROJECT_NUMBER = 3.0.0
PROJECT_BRIEF = "mruby is the lightweight implementation of the Ruby language"
diff --git a/README.md b/README.md
index a027f3941..6e0cab1d7 100644
--- a/README.md
+++ b/README.md
@@ -17,9 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan.
## 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 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 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 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)
diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md
index 5c49e2af2..bb3db7cd7 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 2.1.2 (2020-08-06)
+mruby 3.0.0 (2021-03-05)
```
## 2.2 Basic Operation
diff --git a/doc/limitations.md b/doc/limitations.md
index e6eb3f4a9..ee3107297 100644
--- a/doc/limitations.md
+++ b/doc/limitations.md
@@ -29,7 +29,7 @@ puts [1,2,3]
3
```
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
```
[1, 2, 3]
@@ -52,7 +52,7 @@ end
`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:
@@ -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.
@@ -118,7 +118,7 @@ false
true
```
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
```
true
@@ -155,7 +155,7 @@ p 'ok'
ok
```
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
```
test.rb:8: undefined method 'test_func' (NoMethodError)
@@ -177,7 +177,7 @@ defined?(Foo)
nil
```
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
`NameError` is raised.
@@ -194,7 +194,7 @@ alias $a $__a__
` nil `
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
Syntax error
@@ -216,7 +216,7 @@ end
`ArgumentError` is raised.
The re-defined `+` operator does not accept any arguments.
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
` 'ab' `
Behavior of the operator wasn't changed.
@@ -232,7 +232,7 @@ $ ruby -e 'puts Proc.new {}.binding'
#<Binding:0x00000e9deabb9950>
```
-#### mruby [2.1.2 (2020-08-06)]
+#### mruby [3.0.0 (2021-03-05)]
```
$ ./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)'
[[{"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)'
diff --git a/include/mruby/version.h b/include/mruby/version.h
index 25824d697..185263f32 100644
--- a/include/mruby/version.h
+++ b/include/mruby/version.h
@@ -57,7 +57,7 @@ MRB_BEGIN_DECL
/*
* Patch level string. (optional)
*/
-#define MRUBY_PATCHLEVEL_STR "RC"
+#define MRUBY_PATCHLEVEL_STR ""
#ifndef MRUBY_PATCHLEVEL_STR
# if MRUBY_PATCHLEVEL < 0
@@ -85,12 +85,12 @@ MRB_BEGIN_DECL
/*
* Release month.
*/
-#define MRUBY_RELEASE_MONTH 2
+#define MRUBY_RELEASE_MONTH 3
/*
* Release day.
*/
-#define MRUBY_RELEASE_DAY 3
+#define MRUBY_RELEASE_DAY 5
/*
* Release date as a string.