tls-checker 2.0.1 → 2.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e631fb5a5661e925d1b3f705f547b8d7ebbbb55f797b95458dd2f3b91bd062cb
4
- data.tar.gz: 8a0069d414059a0625756f94676652400c60cc1886c58811413175d81ce1c0d0
3
+ metadata.gz: 63f8e90c286a45c2730f14ade581112be72ebccf4e57e1b8af49984f07ff167b
4
+ data.tar.gz: 1774fb8e68a0185ef0a025fdd26705b42bb18a039682b593fb08ef557cd9a422
5
5
  SHA512:
6
- metadata.gz: 6ad1f798b94082cf7d167b5598538eaa984d3c41f76fa9310fb430b5bfb2d3f291e3e647ba963fd976eb3007bed6e387f51e2fd478e5c2c07429317fc50d4bd8
7
- data.tar.gz: fe4f603393c223c181b25bee243bf96afb24978d83ab72f7922bb833a3c34f09b7ee3fb9a723449d3880dab22ebfdf600b23b8ecb79f31a624fc996a28297692
6
+ metadata.gz: ae1a3db39aba9a9063744dca7b97d73f0f245c1ff856c973264ddaf3a70ee97fd71103e6d50ea5b65b296c4de0998f7f6c885ee2dc80577cb6df031781a4c9b5
7
+ data.tar.gz: 324351d536a45b289000ca23b3555029a87f6d1c0846539a7e832b296414de1c5011a71d77aead234c33dbf82fd94c137d732d6596e9e1a178080ccf0ef1a924
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v2.0.2](https://github.com/smortex/tls-checker/tree/v2.0.2) (2022-07-16)
9
+
10
+ [Full Changelog](https://github.com/smortex/tls-checker/compare/v2.0.1...v2.0.2)
11
+
12
+ **Fixed bugs:**
13
+
14
+ - Fix command invocation from outside bundler [\#6](https://github.com/smortex/tls-checker/pull/6) ([smortex](https://github.com/smortex))
15
+
8
16
  ## [v2.0.1](https://github.com/smortex/tls-checker/tree/v2.0.1) (2022-07-16)
9
17
 
10
18
  [Full Changelog](https://github.com/smortex/tls-checker/compare/v2.0.0...v2.0.1)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TLSChecker
4
- VERSION = '2.0.1'
4
+ VERSION = '2.0.2'
5
5
  end
data/lib/tls_checker.rb CHANGED
@@ -5,3 +5,4 @@ require 'tls_checker/certificate_checker_factory'
5
5
  require 'tls_checker/line_oriented_socket'
6
6
  require 'tls_checker/tlsa_checker'
7
7
  require 'tls_checker/tlsa_checker_factory'
8
+ require 'tls_checker/version'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tls-checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière