fix: add exception for socket connection refused
This commit is contained in:
commit
ada7c07eac
3 changed files with 24 additions and 1 deletions
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,5 +1,24 @@
|
|||
# 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)
|
||||
|
||||
#### New Features
|
||||
|
|
|
@ -13,7 +13,7 @@ from cryptography.x509.oid import NameOID
|
|||
import idna
|
||||
|
||||
|
||||
__version__ = "0.7.0"
|
||||
__version__ = "0.7.1"
|
||||
|
||||
HostInfo = namedtuple("HostInfo", ["cert", "hostname", "peername", "is_valid"])
|
||||
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
[tool.poetry]
|
||||
name = "checkcert"
|
||||
<<<<<<< HEAD
|
||||
version = "0.7.0"
|
||||
=======
|
||||
version = "0.7.1"
|
||||
>>>>>>> main
|
||||
description = "CLI to check tls cert information and determine validity"
|
||||
authors = ["Alex Kelly <kellya@arachnitech.com>"]
|
||||
readme = "README.md"
|
||||
|
|
Loading…
Reference in a new issue