From 167ec0600224aced933535e9f2a6ef702141c9aa Mon Sep 17 00:00:00 2001 From: Peter Cai <222655+pcai@users.noreply.github.com> Date: Tue, 2 Jul 2024 17:28:51 +0000 Subject: [PATCH] prepare 2.3.8 release --- README.md | 2 +- changelog.md | 3 +++ lib/winrm/version.rb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9f411eee..52b2e1f7 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,7 @@ WinRM::Connection.new( ) ``` -The `:ssl` transport establishes a connection to the winrm endpoint over a secure sockets layer transport encrypting the entire message. Here are some additional connecion options available to `:ssl` connections: +The `:ssl` transport establishes a connection to the winrm endpoint over a secure sockets layer transport encrypting the entire message. Here are some additional connection options available to `:ssl` connections: * `:client_cert` - Either a string path to a certificate `.pem` file or a `X509::Certificate` object. This along with an accompanying `:client_key` can be used in lieu of a `:user` and `:password`. * `:client_key` - the path to the private key file accompanying the above mentioned `:client_cert` or an `PKey::Pkey` object. diff --git a/changelog.md b/changelog.md index 19a42db9..4250e5fe 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,8 @@ # WinRM Gem Changelog +# 2.3.8 +* Add cert_store option by @ussu in https://github.com/WinRb/WinRM/pull/330 + # 2.3.7 * Add ruby-3.1 test by @skeshari12 in https://github.com/WinRb/WinRM/pull/332 * move from travis to GH actions and test ruby 3.1 by @mwrock in https://github.com/WinRb/WinRM/pull/335 diff --git a/lib/winrm/version.rb b/lib/winrm/version.rb index 8fc20992..3974b797 100644 --- a/lib/winrm/version.rb +++ b/lib/winrm/version.rb @@ -1,5 +1,5 @@ # WinRM module module WinRM # The version of the WinRM library - VERSION = '2.3.7'.freeze + VERSION = '2.3.8'.freeze end