summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2025-11-29 12:14:40 +0900
committernagachika <nagachika@ruby-lang.org>2025-11-29 12:14:40 +0900
commit278b731ab92608e75d882036a71eb5825631ef69 (patch)
tree66b60f41b3ff0107bffb3ba6e28221206037fe89
parent269bd157ea7da576ff408a8dfeda8e4485f66a1e (diff)
merge revision(s) d17ce4bd05dc05d48f5f4bc75171fcebda1678ed: [Backport #21652]
[PATCH] [Bug #21652] [DOC] Update unmarshalable object list The `Data` mentioned here was the old `T_DATA` class, not the current extended `Struct`.
-rw-r--r--marshal.c2
-rw-r--r--version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/marshal.c b/marshal.c
index 5ec2f5f041..fca246664e 100644
--- a/marshal.c
+++ b/marshal.c
@@ -1199,7 +1199,7 @@ io_needed(void)
* * anonymous Class/Module.
* * objects which are related to system (ex: Dir, File::Stat, IO, File, Socket
* and so on)
- * * an instance of MatchData, Data, Method, UnboundMethod, Proc, Thread,
+ * * an instance of MatchData, Method, UnboundMethod, Proc, Thread,
* ThreadGroup, Continuation
* * objects which define singleton methods
*/
diff --git a/version.h b/version.h
index d6a2496e4e..74c757d2a9 100644
--- a/version.h
+++ b/version.h
@@ -11,7 +11,7 @@
# define RUBY_VERSION_MINOR RUBY_API_VERSION_MINOR
#define RUBY_VERSION_TEENY 10
#define RUBY_RELEASE_DATE RUBY_RELEASE_YEAR_STR"-"RUBY_RELEASE_MONTH_STR"-"RUBY_RELEASE_DAY_STR
-#define RUBY_PATCHLEVEL 189
+#define RUBY_PATCHLEVEL 190
#include "ruby/version.h"
#include "ruby/internal/abi.h"