diff options
| -rw-r--r-- | MITL | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | doc/guides/debugger.md | 2 | ||||
| -rw-r--r-- | doc/limitations.md | 14 | ||||
| -rw-r--r-- | include/mruby.h | 2 | ||||
| -rw-r--r-- | include/mruby/version.h | 8 |
6 files changed, 15 insertions, 15 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2017 mruby developers +Copyright (c) 2018 mruby developers Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), @@ -17,7 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan. ## How to get mruby -The stable version 1.3.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.3.0.zip](https://github.com/mruby/mruby/archive/1.3.0.zip) +The stable version 1.4.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.4.0.zip](https://github.com/mruby/mruby/archive/1.4.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) diff --git a/doc/guides/debugger.md b/doc/guides/debugger.md index 72f2c2b32..a41b6ce45 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 1.3.0 (2017-7-4) +mruby 1.4.0 (2018-1-16) ``` ## 2.2 Basic Operation diff --git a/doc/limitations.md b/doc/limitations.md index 134ff6e26..855ae16ee 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -38,7 +38,7 @@ puts [1,2,3] 3 ``` -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] ``` [1, 2, 3] @@ -61,7 +61,7 @@ end ```ZeroDivisionError``` is raised. -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] No exception is raised. @@ -89,7 +89,7 @@ p Liste.new "foobar" ``` [] ``` -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] ```ArgumentError``` is raised. @@ -119,7 +119,7 @@ false true ``` -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] ``` true @@ -142,7 +142,7 @@ defined?(Foo) nil ``` -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] ```NameError``` is raised. @@ -159,7 +159,7 @@ alias $a $__a__ ``` nil ``` -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] Syntax error @@ -181,7 +181,7 @@ end ```ArgumentError``` is raised. The re-defined ```+``` operator does not accept any arguments. -#### mruby [1.3.0 (2017-7-4)] +#### mruby [1.4.0 (2018-1-16)] ``` 'ab' ``` Behavior of the operator wasn't changed. diff --git a/include/mruby.h b/include/mruby.h index d93874dfa..f4d8e229a 100644 --- a/include/mruby.h +++ b/include/mruby.h @@ -1,7 +1,7 @@ /* ** mruby - An embeddable Ruby implementation ** -** Copyright (c) mruby developers 2010-2017 +** Copyright (c) mruby developers 2010-2018 ** ** 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 8414bf204..3ba2db031 100644 --- a/include/mruby/version.h +++ b/include/mruby/version.h @@ -42,7 +42,7 @@ MRB_BEGIN_DECL /* * Minor release version number. */ -#define MRUBY_RELEASE_MINOR 3 +#define MRUBY_RELEASE_MINOR 4 /* * Tiny release version number. @@ -62,17 +62,17 @@ MRB_BEGIN_DECL /* * Release year. */ -#define MRUBY_RELEASE_YEAR 2017 +#define MRUBY_RELEASE_YEAR 2018 /* * Release month. */ -#define MRUBY_RELEASE_MONTH 7 +#define MRUBY_RELEASE_MONTH 1 /* * Release day. */ -#define MRUBY_RELEASE_DAY 4 +#define MRUBY_RELEASE_DAY 16 /* * Release date as a string. |
