summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cont.c5
-rw-r--r--version.h2
2 files changed, 4 insertions, 3 deletions
diff --git a/cont.c b/cont.c
index b7ef391581..6760cb3504 100644
--- a/cont.c
+++ b/cont.c
@@ -1102,8 +1102,9 @@ rb_cont_call(int argc, VALUE *argv, VALUE contval)
* the programmer and not the VM.
*
* As opposed to other stackless light weight concurrency models, each fiber
- * comes with a small 4KB stack. This enables the fiber to be paused from deeply
- * nested function calls within the fiber block.
+ * comes with a stack. This enables the fiber to be paused from deeply
+ * nested function calls within the fiber block. See the ruby(1)
+ * manpage to configure the size of the fiber stack(s).
*
* When a fiber is created it will not run automatically. Rather it must
* be explicitly asked to run using the <code>Fiber#resume</code> method.
diff --git a/version.h b/version.h
index 245c5e66ac..6808982beb 100644
--- a/version.h
+++ b/version.h
@@ -1,6 +1,6 @@
#define RUBY_VERSION "2.4.0"
#define RUBY_RELEASE_DATE "2017-03-11"
-#define RUBY_PATCHLEVEL 12
+#define RUBY_PATCHLEVEL 13
#define RUBY_RELEASE_YEAR 2017
#define RUBY_RELEASE_MONTH 3