-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,18 @@ | ||
# Changes # | ||
|
||
## Version 1.0.1 - 26-Dec-2019 ## | ||
|
||
* Fix errors converting DSA and RSA PPK keys to OpenSSL in | ||
`OpenSSL::PKey.from_ppk(ppk)` with Ruby MRI 2.4 and later. | ||
* Fix errors converting EC PPK keys to OpenSSL in | ||
`OpenSSL::PKey.from_ppk(ppk)` with JRuby 9.2. | ||
* Fix errors converting EC keys from OpenSSL to PPK in | ||
`OpenSSL::PKey::EC.to_ppk` with JRuby 9.2. | ||
* Enable frozen string literals. | ||
* Load dependencies using `require_relative` instead of `require`. | ||
* Remove support for Rubinius. | ||
|
||
|
||
## Version 1.0.0 - 2-Apr-2016 ## | ||
|
||
* First release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,6 @@ | |
module PuTTY | ||
module Key | ||
# The PuTTY::Key version number. | ||
VERSION = '1.0.0' | ||
VERSION = '1.0.1' | ||
end | ||
end |