summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-13 13:42:11 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-07-13 13:42:11 +0000
commit7c83af2d7be6ae3dd0d7dfa464b6711951e5312e (patch)
tree18a66879802e397d17406528663a7a47c81e1b9b
parent239d52c825f7b98d3aa4ae42cbc7034cbf8198cd (diff)
merge revision(s) 41807:
* test/openssl/test_x509crl.rb: Remove unused variable. [ruby-core:53501] [Bug #8114] Thanks, Vipul Amler, for pointing this out! git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_0_0@41941 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--test/openssl/test_x509crl.rb1
-rw-r--r--version.h6
3 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 5fa1dc86f2..94dc5cef31 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Jul 13 22:41:20 2013 Martin Bosslet <Martin.Bosslet@gmail.com>
+
+ * test/openssl/test_x509crl.rb: Remove unused variable.
+ [ruby-core:53501] [Bug #8114]
+
+ Thanks, Vipul Amler, for pointing this out!
+
Sun Jul 7 02:00:41 2013 Martin Bosslet <Martin.Bosslet@gmail.com>
* lib/openssl/ssl.rb: Fix SSL client connection crash for SAN marked
diff --git a/test/openssl/test_x509crl.rb b/test/openssl/test_x509crl.rb
index c321c00083..d5024751d2 100644
--- a/test/openssl/test_x509crl.rb
+++ b/test/openssl/test_x509crl.rb
@@ -101,7 +101,6 @@ class OpenSSL::TestX509CRL < Test::Unit::TestCase
assert_equal(false, revoked[3].extensions[0].critical?)
assert_equal(false, revoked[4].extensions[0].critical?)
- crl = OpenSSL::X509::CRL.new(crl.to_der)
assert_equal("Key Compromise", revoked[0].extensions[0].value)
assert_equal("CA Compromise", revoked[1].extensions[0].value)
assert_equal("Affiliation Changed", revoked[2].extensions[0].value)
diff --git a/version.h b/version.h
index 00ca9ec11d..fa1c103a5d 100644
--- a/version.h
+++ b/version.h
@@ -1,10 +1,10 @@
#define RUBY_VERSION "2.0.0"
-#define RUBY_RELEASE_DATE "2013-07-07"
-#define RUBY_PATCHLEVEL 255
+#define RUBY_RELEASE_DATE "2013-07-13"
+#define RUBY_PATCHLEVEL 256
#define RUBY_RELEASE_YEAR 2013
#define RUBY_RELEASE_MONTH 7
-#define RUBY_RELEASE_DAY 7
+#define RUBY_RELEASE_DAY 13
#include "ruby/version.h"