Skip to content

Commit 0fb106c

Browse files
committed
update mruby to 3.2.0
1 parent 7e8cfe7 commit 0fb106c

10 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ include(FeatureSummary)
88
include(ExternalProject)
99
ExternalProject_Add(
1010
mruby
11-
URL https://github.com/mruby/mruby/archive/3.1.0.tar.gz
12-
URL_HASH SHA512=b3699587689709b7411105ef468c28a6d89941dea356e6b3272b6ba1f69dc2d59e9c1ebc56c55208adc8b2ba878e21c8961ddd4603781748070fc78b6c2bbdb2
11+
URL https://github.com/mruby/mruby/archive/3.2.0.tar.gz
12+
URL_HASH SHA512=bb46fa0eda6507cabe775e3f9cceec6da64d5a96c20e704e7ada94f5b4906989553c363cfd85789c4adcb030a6cfd36b8a99d8247f32687c913bbe06edb9bbca
1313
CONFIGURE_COMMAND
1414
""
1515
BUILD_COMMAND

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ tool_that_emits_json | rj '.map { |item| { one: item.foo, two: item.bar.name } }
3535
for building:
3636
- CMake
3737
- Ruby 2.5 or later
38-
- [whatever else mruby 3.1.0 needs][mruby_deps] :^)
38+
- [whatever else mruby 3.2.0 needs][mruby_deps] :^)
3939

4040
## Building
4141

@@ -53,4 +53,4 @@ ruby ./test/rj_test.rb
5353
./build/src/rj
5454
```
5555

56-
[mruby_deps]: https://github.com/mruby/mruby/blob/3.1.0/doc/guides/compile.md#prerequisites
56+
[mruby_deps]: https://github.com/mruby/mruby/blob/3.2.0/doc/guides/compile.md#prerequisites

mruby_config.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# Hack to fix the preprocessor command in universal builds:
2727

2828
class MRuby::Command::Compiler
29-
# https://github.com/mruby/mruby/blob/3.1.0/lib/mruby/build/command.rb#L87-L100
29+
# https://github.com/mruby/mruby/blob/3.2.0/lib/mruby/build/command.rb#L83-L96
3030
def run(outfile, infile, _defines=[], _include_paths=[], _flags=[])
3131
mkdir_p File.dirname(outfile)
3232
flags = all_flags(_defines, _include_paths, _flags)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{:symbol=>true,"class"=>Class,:method=>#<Method: #<Class:Rj>#__debug_info>}
1+
{:symbol=>true,"class"=>Class,:method=>#<Method: Rj.__debug_info>}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
:symbol => true,
33
"class" => Class,
4-
:method => #<Method: #<Class:Rj>#__debug_info>
4+
:method => #<Method: Rj.__debug_info>
55
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"colour":false,"compact":true,"debug":true,"output_format":"json","ruby":"mruby 3.1.0 (2022-05-12)"}
1+
{"colour":false,"compact":true,"debug":true,"output_format":"json","ruby":"mruby 3.2.0 (2023-02-24)"}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"colour":false,"compact":true,"debug":false,"output_format":"json","ruby":"mruby 3.1.0 (2022-05-12)"}
1+
{"colour":false,"compact":true,"debug":false,"output_format":"json","ruby":"mruby 3.2.0 (2023-02-24)"}

test/fixtures/test_internals_debug_stdout.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"compact": false,
44
"debug": true,
55
"output_format": "json",
6-
"ruby": "mruby 3.1.0 (2022-05-12)"
6+
"ruby": "mruby 3.2.0 (2023-02-24)"
77
}

test/fixtures/test_internals_noflags_stdout.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"compact": false,
44
"debug": false,
55
"output_format": "json",
6-
"ruby": "mruby 3.1.0 (2022-05-12)"
6+
"ruby": "mruby 3.2.0 (2023-02-24)"
77
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rj 0.4.0 (mruby 3.1.0)
1+
rj 0.4.0 (mruby 3.2.0)

0 commit comments

Comments
 (0)