Skip to content

Commit

Permalink
Update version and release date. (mruby 3.0.0 (2021-03-05))
Browse files Browse the repository at this point in the history
  • Loading branch information
mimaki committed Mar 5, 2021
1 parent f5d3d89 commit 0f45836
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
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-08-06)
mruby 3.0.0 (2021-03-05)
```

## 2.2 Basic Operation
Expand Down
20 changes: 10 additions & 10 deletions doc/limitations.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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:

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

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

#### mruby [2.1.2 (2020-08-06)]
#### mruby [3.0.0 (2021-03-05)]

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

#### mruby [2.1.2 (2020-08-06)]
#### mruby [3.0.0 (2021-03-05)]

`NameError` is raised.

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

` nil `

#### mruby [2.1.2 (2020-08-06)]
#### mruby [3.0.0 (2021-03-05)]

Syntax error

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

0 comments on commit 0f45836

Please sign in to comment.