Skip to content

Commit 680f611

Browse files
committed
Merge branch 'master-2.5' into dist/2.5/bionic
2 parents 8fd3654 + d30d860 commit 680f611

File tree

5 files changed

+29
-7
lines changed

5 files changed

+29
-7
lines changed

ChangeLog

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
11
------------------------------------------------------------------------
2-
r67245 | nagachika | 2019-03-13 18:38:32 +0900 (Wed, 13 Mar 2019) | 1 line
2+
r67260 | nagachika | 2019-03-15 07:24:22 +0900 (Fri, 15 Mar 2019) | 1 line
33

4-
add tag v2_5_4
4+
add tag v2_5_5
5+
------------------------------------------------------------------------
6+
r67259 | nagachika | 2019-03-15 07:21:30 +0900 (Fri, 15 Mar 2019) | 8 lines
7+
8+
merge revision(s) 63309:
9+
10+
thread_sync.c (condvar_ptr): reset fork_gen after forking
11+
12+
Otherwise the condition variable waiter list will always
13+
be empty, which is wrong :x
14+
15+
[Bug #14725] [Bug #14634]
16+
------------------------------------------------------------------------
17+
r67258 | nagachika | 2019-03-15 07:16:48 +0900 (Fri, 15 Mar 2019) | 1 line
18+
19+
bump up teeny version to 2.5.5
520
------------------------------------------------------------------------
621
r67242 | nagachika | 2019-03-13 09:32:12 +0900 (Wed, 13 Mar 2019) | 7 lines
722

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
ruby2.5 (2.5.5-0nkmi1~dist) unstable; urgency=medium
2+
3+
* Ruby 2.5.5
4+
5+
-- Sorah Fukumori <[email protected]> Fri, 15 Mar 2019 01:51:14 +0000
6+
17
ruby2.5 (2.5.4-0nkmi1~dist) unstable; urgency=medium
28

39
* Ruby 2.5.4

revision.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
#define RUBY_REVISION 67245
1+
#define RUBY_REVISION 67260

thread_sync.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1314,6 +1314,7 @@ condvar_ptr(VALUE self)
13141314

13151315
/* forked children can't reach into parent thread stacks */
13161316
if (cv->fork_gen != fork_gen) {
1317+
cv->fork_gen = fork_gen;
13171318
list_head_init(&cv->waitq);
13181319
}
13191320

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
#define RUBY_VERSION "2.5.4"
2-
#define RUBY_RELEASE_DATE "2019-03-13"
3-
#define RUBY_PATCHLEVEL 155
1+
#define RUBY_VERSION "2.5.5"
2+
#define RUBY_RELEASE_DATE "2019-03-15"
3+
#define RUBY_PATCHLEVEL 157
44

55
#define RUBY_RELEASE_YEAR 2019
66
#define RUBY_RELEASE_MONTH 3
7-
#define RUBY_RELEASE_DAY 13
7+
#define RUBY_RELEASE_DAY 15
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)