Skip to content

Commit e0660c6

Browse files
committed
prepare for 0.10.5
1 parent 3a29867 commit e0660c6

File tree

3 files changed

+13
-23
lines changed

3 files changed

+13
-23
lines changed

History.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.10.5
2+
3+
* [fix] EC key sign/verify (#193)
4+
* [feat] upgrade BC library to 1.65
5+
* [refactor] clean security helpers to avoid reflection (#197)
6+
* Just use normal getInstance to get KeyFactory (fixes #197)
7+
* Allow multiple Certificates with the same SubjectDN in the store (#198)
8+
* Try direct path for MessageDigest before invasive path (#194)
9+
(relates to jruby/jruby#6098)
10+
* [refactor] avoid NativeException usage (jruby/jruby#5646)
11+
112
## 0.10.4
213

314
* Use CertificateFactory.getInstance rather than reflection

lib/jopenssl/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module JOpenSSL
2-
VERSION = '0.10.5.dev'
2+
VERSION = '0.10.5'
33
BOUNCY_CASTLE_VERSION = '1.65'
44
end
55

pom.xml

+1-22
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>rubygems</groupId>
1313
<artifactId>jruby-openssl</artifactId>
14-
<version>0.10.5.dev-SNAPSHOT</version>
14+
<version>0.10.5</version>
1515
<packaging>gem</packaging>
1616
<name>JRuby OpenSSL</name>
1717
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
@@ -74,27 +74,6 @@ DO NOT MODIFIY - GENERATED CODE
7474
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
7575
</properties>
7676
<dependencies>
77-
<dependency>
78-
<groupId>rubygems</groupId>
79-
<artifactId>jar-dependencies</artifactId>
80-
<version>[0.1,0.99999]</version>
81-
<type>gem</type>
82-
<scope>test</scope>
83-
</dependency>
84-
<dependency>
85-
<groupId>rubygems</groupId>
86-
<artifactId>mocha</artifactId>
87-
<version>[1.4,2.0)</version>
88-
<type>gem</type>
89-
<scope>test</scope>
90-
</dependency>
91-
<dependency>
92-
<groupId>rubygems</groupId>
93-
<artifactId>ruby-maven</artifactId>
94-
<version>[3.0,3.99999]</version>
95-
<type>gem</type>
96-
<scope>test</scope>
97-
</dependency>
9877
<dependency>
9978
<groupId>org.bouncycastle</groupId>
10079
<artifactId>bcprov-jdk15on</artifactId>

0 commit comments

Comments
 (0)