summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHiroshi Mimaki <[email protected]>2018-01-16 10:15:19 +0900
committerHiroshi Mimaki <[email protected]>2018-01-16 10:15:19 +0900
commit58fb6f421ad9824caae5a2cabb849d48647b90ec (patch)
tree2628fc760ccda828ce491a86947c5a8365745f69
parent623436276e9650ce60c64bc24bfd430aab8a4193 (diff)
downloadmruby-58fb6f421ad9824caae5a2cabb849d48647b90ec.tar.gz
mruby-58fb6f421ad9824caae5a2cabb849d48647b90ec.zip
Set the mruby-1.4.0 release date to `2018-1-16`.1.4.0
-rw-r--r--MITL2
-rw-r--r--README.md2
-rw-r--r--doc/guides/debugger.md2
-rw-r--r--doc/limitations.md14
-rw-r--r--include/mruby.h2
-rw-r--r--include/mruby/version.h8
6 files changed, 15 insertions, 15 deletions
diff --git a/MITL b/MITL
index d02b8fe1c..8d8c78fab 100644
--- a/MITL
+++ b/MITL
@@ -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"),
diff --git a/README.md b/README.md
index 9d0c611b2..196cc2ef7 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 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.