From 32279e4128527bab4c961854b9cce727a060abea Mon Sep 17 00:00:00 2001 From: mimaki Date: Wed, 14 Feb 2024 13:25:11 +0900 Subject: [PATCH] Update version and release date. (mruby 3.3.0 (2024-02-14)) --- Doxyfile | 2 +- README.md | 4 +--- doc/guides/debugger.md | 2 +- include/mruby/version.h | 6 +++--- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Doxyfile b/Doxyfile index 3a66c141f..2df76d8c3 100644 --- a/Doxyfile +++ b/Doxyfile @@ -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 diff --git a/README.md b/README.md index 5e3d86c5f..21ee55c6f 100644 --- a/README.md +++ b/README.md @@ -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 release candidate version 3.3.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/3.3.0-rc2.zip](https://github.com/mruby/mruby/archive/3.3.0-rc2.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 diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md index dba9fb57d..4e52b7b8b 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 3.2.0 (2023-02-24) +mruby 3.3.0 (2024-02-14) ``` ## 2.2 Basic Operation diff --git a/include/mruby/version.h b/include/mruby/version.h index f1b16b415..2562603c7 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 "RC2" +#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 1 +#define MRUBY_RELEASE_MONTH 2 /* * Release day. */ -#define MRUBY_RELEASE_DAY 4 +#define MRUBY_RELEASE_DAY 14 /* * Release date as a string.