Skip to content

Commit b6b9c57

Browse files
committed
Update version to 2.1.2. (mruby 2.1.2 RC)
1 parent aa578c3 commit b6b9c57

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
DOXYFILE_ENCODING = UTF-8
88
PROJECT_NAME = "mruby"
9-
PROJECT_NUMBER = 2.1.1
9+
PROJECT_NUMBER = 2.1.2
1010

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan.
1717

1818
## How to get mruby
1919

20-
The stable version 2.1.1 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/2.1.1.zip](https://github.com/mruby/mruby/archive/2.1.1.zip)
20+
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)
2121

2222
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)
2323

doc/guides/debugger.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To confirm mrdb was installed properly, run mrdb with the `--version` option:
3838

3939
```bash
4040
$ mrdb --version
41-
mruby 2.1.1 (2020-06-04)
41+
mruby 2.1.2 (2020-07-10)
4242
```
4343

4444
## 2.2 Basic Operation

doc/limitations.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ puts [1,2,3]
3838
3
3939
```
4040

41-
#### mruby [2.1.1 (2020-06-04)]
41+
#### mruby [2.1.2 (2020-07-10)]
4242

4343
```
4444
[1, 2, 3]
@@ -61,7 +61,7 @@ end
6161

6262
`ZeroDivisionError` is raised.
6363

64-
#### mruby [2.1.1 (2020-06-04)]
64+
#### mruby [2.1.2 (2020-07-10)]
6565

6666
No exception is raised.
6767

@@ -89,7 +89,7 @@ p Liste.new "foobar"
8989

9090
` [] `
9191

92-
#### mruby [2.1.1 (2020-06-04)]
92+
#### mruby [2.1.2 (2020-07-10)]
9393

9494
`ArgumentError` is raised.
9595

@@ -119,7 +119,7 @@ false
119119
true
120120
```
121121

122-
#### mruby [2.1.1 (2020-06-04)]
122+
#### mruby [2.1.2 (2020-07-10)]
123123

124124
```
125125
true
@@ -156,7 +156,7 @@ p 'ok'
156156
ok
157157
```
158158

159-
#### mruby [2.1.1 (2020-06-04)]
159+
#### mruby [2.1.2 (2020-07-10)]
160160

161161
```
162162
test.rb:8: undefined method 'test_func' (NoMethodError)
@@ -178,7 +178,7 @@ defined?(Foo)
178178
nil
179179
```
180180

181-
#### mruby [2.1.1 (2020-06-04)]
181+
#### mruby [2.1.2 (2020-07-10)]
182182

183183
`NameError` is raised.
184184

@@ -195,7 +195,7 @@ alias $a $__a__
195195

196196
` nil `
197197

198-
#### mruby [2.1.1 (2020-06-04)]
198+
#### mruby [2.1.2 (2020-07-10)]
199199

200200
Syntax error
201201

@@ -217,7 +217,7 @@ end
217217
`ArgumentError` is raised.
218218
The re-defined `+` operator does not accept any arguments.
219219

220-
#### mruby [2.1.1 (2020-06-04)]
220+
#### mruby [2.1.2 (2020-07-10)]
221221

222222
` 'ab' `
223223
Behavior of the operator wasn't changed.
@@ -233,7 +233,7 @@ $ ruby -e 'puts Proc.new {}.binding'
233233
#<Binding:0x00000e9deabb9950>
234234
```
235235

236-
#### mruby [2.1.1 (2020-06-04)]
236+
#### mruby [2.1.2 (2020-07-10)]
237237

238238
```
239239
$ ./bin/mruby -e 'puts Proc.new {}.binding'
@@ -255,7 +255,7 @@ $ ruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)'
255255
[[{"a"=>1}], {:b=>2}]
256256
```
257257

258-
#### mruby [mruby 2.1.1]
258+
#### mruby [mruby 2.1.2]
259259

260260
```
261261
$ ./bin/mruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)'

include/mruby/version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ MRB_BEGIN_DECL
4747
/*
4848
* Tiny release version number.
4949
*/
50-
#define MRUBY_RELEASE_TEENY 1
50+
#define MRUBY_RELEASE_TEENY 2
5151

5252
/*
5353
* The mruby version.
@@ -67,12 +67,12 @@ MRB_BEGIN_DECL
6767
/*
6868
* Release month.
6969
*/
70-
#define MRUBY_RELEASE_MONTH 6
70+
#define MRUBY_RELEASE_MONTH 7
7171

7272
/*
7373
* Release day.
7474
*/
75-
#define MRUBY_RELEASE_DAY 4
75+
#define MRUBY_RELEASE_DAY 10
7676

7777
/*
7878
* Release date as a string.

0 commit comments

Comments
 (0)