Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge mruby 3.3.0 #6169

Merged
merged 12 commits into from
Feb 15, 2024
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = mruby
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 3.2.0
PROJECT_NUMBER = 3.3.0

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,10 @@ of the Ministry of Economy, Trade and Industry of Japan.

## How to get mruby

To get mruby, you can download the stable version 3.2.0 from the official mruby
To get mruby, you can download the stable version 3.3.0 from the official mruby
GitHub repository or clone the trunk of the mruby source tree with the "git
clone" command. You can also install and compile mruby using [ruby-install](https://github.com/postmodern/ruby-install), [ruby-build](https://github.com/rbenv/ruby-build) or [rvm](https://github.com/rvm/rvm).

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

The trunk of the mruby source tree can be checked out with the
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 3.2.0 (2023-02-24)
mruby 3.3.0 (2024-02-14)
```

## 2.2 Basic Operation
Expand Down
8 changes: 4 additions & 4 deletions include/mruby/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ MRB_BEGIN_DECL
/*
* The version of Ruby used by mruby.
*/
#define MRUBY_RUBY_VERSION "3.2"
#define MRUBY_RUBY_VERSION "3.3"

/*
* Ruby engine.
Expand All @@ -42,7 +42,7 @@ MRB_BEGIN_DECL
/*
* Minor release version number.
*/
#define MRUBY_RELEASE_MINOR 2
#define MRUBY_RELEASE_MINOR 3

/*
* Tiny release version number.
Expand Down Expand Up @@ -80,7 +80,7 @@ MRB_BEGIN_DECL
/*
* Release year.
*/
#define MRUBY_RELEASE_YEAR 2023
#define MRUBY_RELEASE_YEAR 2024

/*
* Release month.
Expand All @@ -90,7 +90,7 @@ MRB_BEGIN_DECL
/*
* Release day.
*/
#define MRUBY_RELEASE_DAY 24
#define MRUBY_RELEASE_DAY 14

/*
* Release date as a string.
Expand Down
Loading