From 3d46f1b62092a064d740c66d5395bcf89c899ee9 Mon Sep 17 00:00:00 2001 From: Hiroshi Mimaki Date: Fri, 10 Apr 2020 13:05:23 +0900 Subject: Update version to `2.1.1`. (mruby 2.1.1 RC) --- Doxyfile | 2 +- LICENSE | 2 +- README.md | 2 +- doc/guides/debugger.md | 2 +- doc/limitations.md | 20 ++++++++++---------- include/mruby.h | 2 +- include/mruby/version.h | 8 ++++---- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Doxyfile b/Doxyfile index 8e465afad..86a657bc7 100644 --- a/Doxyfile +++ b/Doxyfile @@ -6,7 +6,7 @@ DOXYFILE_ENCODING = UTF-8 PROJECT_NAME = "mruby" -PROJECT_NUMBER = 2.1.0 +PROJECT_NUMBER = 2.1.1 PROJECT_BRIEF = "mruby is the lightweight implementation of the Ruby language" diff --git a/LICENSE b/LICENSE index ab5432331..363428a1e 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2019 mruby developers +Copyright (c) 2020 mruby developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), diff --git a/README.md b/README.md index b11e9412d..dd62b86af 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan. ## How to get mruby -The stable version 2.1.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/2.1.0.zip](https://github.com/mruby/mruby/archive/2.1.0.zip) +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) 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) diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md index a94ef1802..0b0c33380 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 2.1.0 (2019-11-19) +mruby 2.1.1 (2020-04-20) ``` ## 2.2 Basic Operation diff --git a/doc/limitations.md b/doc/limitations.md index 9ad2019f7..4b4f1b9f5 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -38,7 +38,7 @@ puts [1,2,3] 3 ``` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] ``` [1, 2, 3] @@ -61,7 +61,7 @@ end `ZeroDivisionError` is raised. -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] No exception is raised. @@ -89,7 +89,7 @@ p Liste.new "foobar" ` [] ` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] `ArgumentError` is raised. @@ -119,7 +119,7 @@ false true ``` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] ``` true @@ -156,7 +156,7 @@ p 'ok' ok ``` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] ``` test.rb:8: undefined method 'test_func' (NoMethodError) @@ -178,7 +178,7 @@ defined?(Foo) nil ``` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] `NameError` is raised. @@ -195,7 +195,7 @@ alias $a $__a__ ` nil ` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] Syntax error @@ -217,7 +217,7 @@ end `ArgumentError` is raised. The re-defined `+` operator does not accept any arguments. -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] ` 'ab' ` Behavior of the operator wasn't changed. @@ -233,7 +233,7 @@ $ ruby -e 'puts Proc.new {}.binding' # ``` -#### mruby [2.1.0 (2019-11-19)] +#### mruby [2.1.1 (2020-04-20)] ``` $ ./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)' [[{"a"=>1}], {:b=>2}] ``` -#### mruby [mruby 2.1.0] +#### mruby [mruby 2.1.1] ``` $ ./bin/mruby -e 'def m(*r,**k) p [r,k] end; m("a"=>1,:b=>2)' diff --git a/include/mruby.h b/include/mruby.h index 7419618fd..e96a4bfd3 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -1,7 +1,7 @@ /* ** mruby - An embeddable Ruby implementation ** -** Copyright (c) mruby developers 2010-2019 +** Copyright (c) mruby developers 2010-2020 ** ** Permission is hereby granted, free of charge, to any person obtaining ** a copy of this software and associated documentation files (the diff --git a/include/mruby/version.h b/include/mruby/version.h index f4ef21021..c43c51d85 100644 --- a/include/mruby/version.h +++ b/include/mruby/version.h @@ -47,7 +47,7 @@ MRB_BEGIN_DECL /* * Tiny release version number. */ -#define MRUBY_RELEASE_TEENY 0 +#define MRUBY_RELEASE_TEENY 1 /* * The mruby version. @@ -62,17 +62,17 @@ MRB_BEGIN_DECL /* * Release year. */ -#define MRUBY_RELEASE_YEAR 2019 +#define MRUBY_RELEASE_YEAR 2020 /* * Release month. */ -#define MRUBY_RELEASE_MONTH 11 +#define MRUBY_RELEASE_MONTH 4 /* * Release day. */ -#define MRUBY_RELEASE_DAY 19 +#define MRUBY_RELEASE_DAY 20 /* * Release date as a string. -- cgit v1.2.3