Skip to content

Commit 089dbf1

Browse files
committed
merge revision(s) r49202: [Backport ruby#10668]
* ext/zlib/zlib.c: fix document of method signatures. [Bug ruby#10668][ruby-core:67186][ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@49783 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent 02dcfb7 commit 089dbf1

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
Sun Mar 1 00:58:30 2015 SHIBATA Hiroshi <[email protected]>
2+
3+
* ext/zlib/zlib.c: fix document of method signatures.
4+
[Bug #10668][ruby-core:67186][ci skip]
5+
16
Sat Feb 28 02:13:17 2015 Tanaka Akira <[email protected]>
27

38
* lib/resolv.rb (Resolv::DNS::Name#==): Compare an array of Label:Str

ext/zlib/zlib.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -461,7 +461,7 @@ rb_zlib_adler32_combine(VALUE klass, VALUE adler1, VALUE adler2, VALUE len2)
461461
/*
462462
* Document-method: Zlib.crc32
463463
*
464-
* call-seq: Zlib.crc32(string, adler)
464+
* call-seq: Zlib.crc32(string, crc)
465465
*
466466
* Calculates CRC checksum for +string+, and returns updated value of +crc+. If
467467
* +string+ is omitted, it returns the CRC initial value. If +crc+ is omitted, it

version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#define RUBY_VERSION "2.1.5"
2-
#define RUBY_RELEASE_DATE "2015-02-28"
3-
#define RUBY_PATCHLEVEL 300
2+
#define RUBY_RELEASE_DATE "2015-03-01"
3+
#define RUBY_PATCHLEVEL 301
44

55
#define RUBY_RELEASE_YEAR 2015
6-
#define RUBY_RELEASE_MONTH 2
7-
#define RUBY_RELEASE_DAY 28
6+
#define RUBY_RELEASE_MONTH 3
7+
#define RUBY_RELEASE_DAY 1
88

99
#include "ruby/version.h"
1010

0 commit comments

Comments
 (0)