fix: add exception for socket connection refused

This commit is contained in:
Alex Kelly 2021-10-22 10:58:45 -04:00
commit ada7c07eac
3 changed files with 24 additions and 1 deletions

View file

@ -1,5 +1,24 @@
# Changelog # Changelog
## v0.7.0 (2021-10-07)
#### New Features
* (completion): add completion scripts
#### Docs
* add intro readme for docs building
* add shell completion information
* update full doc url in readme
* remove personal "you/I/me"
* add full documentation site
* update changelog for 0.6.0
#### Others
* fix separator testing issues
Full set of changes: [`v0.6.0...v0.7.0`](https://git.admin.franklin.edu/tins/checkcert/compare/v0.6.0...v0.7.0)
## v0.6.0 (2021-10-04) ## v0.6.0 (2021-10-04)
#### New Features #### New Features

View file

@ -13,7 +13,7 @@ from cryptography.x509.oid import NameOID
import idna import idna
__version__ = "0.7.0" __version__ = "0.7.1"
HostInfo = namedtuple("HostInfo", ["cert", "hostname", "peername", "is_valid"]) HostInfo = namedtuple("HostInfo", ["cert", "hostname", "peername", "is_valid"])

View file

@ -1,6 +1,10 @@
[tool.poetry] [tool.poetry]
name = "checkcert" name = "checkcert"
<<<<<<< HEAD
version = "0.7.0" version = "0.7.0"
=======
version = "0.7.1"
>>>>>>> main
description = "CLI to check tls cert information and determine validity" description = "CLI to check tls cert information and determine validity"
authors = ["Alex Kelly <kellya@arachnitech.com>"] authors = ["Alex Kelly <kellya@arachnitech.com>"]
readme = "README.md" readme = "README.md"