diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2017-07-04 15:46:38 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-04 15:46:38 +0900 |
| commit | c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a (patch) | |
| tree | 4f7c3eaa6d6f00f2a2671128a00823576918e67d | |
| parent | e9cdc880082afd037342a81b3aa31a1924f98734 (diff) | |
| parent | 277391e1b292d369ed47999c7ac1c45f3e0be699 (diff) | |
| download | mruby-c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a.tar.gz mruby-c6bd8ceab7244ef913dda99e678e1b97b8fe1a7a.zip | |
Merge pull request #3726 from mruby/stable
mruby-1.3.0
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | doc/guides/debugger.md | 2 | ||||
| -rw-r--r-- | doc/limitations.md | 16 | ||||
| -rw-r--r-- | include/mruby/version.h | 6 | ||||
| -rw-r--r-- | test/bintest.rb | 6 |
5 files changed, 16 insertions, 16 deletions
@@ -17,7 +17,7 @@ of the Ministry of Economy, Trade and Industry of Japan. ## How to get mruby -The stable version 1.2.0 of mruby can be downloaded via the following URL: [https://github.com/mruby/mruby/archive/1.2.0.zip](https://github.com/mruby/mruby/archive/1.2.0.zip) +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 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 366701c88..72f2c2b32 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.2.0 (2014-11-17) +mruby 1.3.0 (2017-7-4) ``` ## 2.2 Basic Operation diff --git a/doc/limitations.md b/doc/limitations.md index c15b3ba81..db8db9a5c 100644 --- a/doc/limitations.md +++ b/doc/limitations.md @@ -38,7 +38,7 @@ puts [1,2,3] 3 ``` -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] ``` [1, 2, 3] @@ -61,7 +61,7 @@ end ```ZeroDivisionError``` is raised. -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] No exception is raised. @@ -77,7 +77,7 @@ def test; eval 'test'; end; test ```SystemStackError``` is raised. -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] Segmentation fault. @@ -105,7 +105,7 @@ p Liste.new "foobar" ``` [] ``` -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] ```ArgumentError``` is raised. @@ -135,7 +135,7 @@ false true ``` -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] ``` true @@ -158,7 +158,7 @@ defined?(Foo) nil ``` -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] ```NameError``` is raised. @@ -175,7 +175,7 @@ alias $a $__a__ ``` nil ``` -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] Syntax error @@ -197,7 +197,7 @@ end ```ArgumentError``` is raised. The re-defined ```+``` operator does not accept any arguments. -#### mruby [1.2.0 (2015-11-17)] +#### mruby [1.3.0 (2017-7-4)] ``` 'ab' ``` Behavior of the operator wasn't changed. diff --git a/include/mruby/version.h b/include/mruby/version.h index 1bd7f4a34..8414bf204 100644 --- a/include/mruby/version.h +++ b/include/mruby/version.h @@ -62,17 +62,17 @@ MRB_BEGIN_DECL /* * Release year. */ -#define MRUBY_RELEASE_YEAR 2015 +#define MRUBY_RELEASE_YEAR 2017 /* * Release month. */ -#define MRUBY_RELEASE_MONTH 11 +#define MRUBY_RELEASE_MONTH 7 /* * Release day. */ -#define MRUBY_RELEASE_DAY 17 +#define MRUBY_RELEASE_DAY 4 /* * Release date as a string. diff --git a/test/bintest.rb b/test/bintest.rb index 8f56cc0ad..12971a9d9 100644 --- a/test/bintest.rb +++ b/test/bintest.rb @@ -3,7 +3,7 @@ require 'test/assert.rb' def cmd(s) case RbConfig::CONFIG['host_os'] - when /mswin(?!ce)|mingw|cygwin|bccwin/ + when /mswin(?!ce)|mingw|bccwin/ "bin\\#{s}.exe" else "bin/#{s}" @@ -12,7 +12,7 @@ end def shellquote(s) case RbConfig::CONFIG['host_os'] - when /mswin(?!ce)|mingw|cygwin|bccwin/ + when /mswin(?!ce)|mingw|bccwin/ "\"#{s}\"" else "'#{s}'" @@ -21,7 +21,7 @@ end ARGV.each do |gem| case RbConfig::CONFIG['host_os'] - when /mswin(?!ce)|mingw|cygwin|bccwin/ + when /mswin(?!ce)|mingw|bccwin/ gem = gem.gsub('\\', '/') end |
