0.2.0
Automatically generated by python-semantic-release
This commit is contained in:
parent
fa667578a3
commit
93594ecd9c
2 changed files with 8 additions and 5 deletions
|
@ -11,7 +11,7 @@ import sys
|
||||||
from socket import socket
|
from socket import socket
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
|
|
||||||
__version__ = "0.1.0"
|
__version__ = "0.2.0"
|
||||||
|
|
||||||
HostInfo = namedtuple(
|
HostInfo = namedtuple(
|
||||||
field_names="cert hostname peername is_valid", typename="HostInfo"
|
field_names="cert hostname peername is_valid", typename="HostInfo"
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "checkcert"
|
name = "checkcert"
|
||||||
version = "0.1.0"
|
version = "0.2.0"
|
||||||
description = ""
|
description = "CLI to check tls cert information and determine validity"
|
||||||
authors = ["Alex Kelly <alex.kelly@franklin.edu>"]
|
authors = ["Alex Kelly <kellya@arachnitech.com>"]
|
||||||
|
readme = "README.md"
|
||||||
|
homepage = "https://github.com/kellya/checkcert"
|
||||||
|
license = "MIT"
|
||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = "^3.9"
|
python = "^3.9"
|
||||||
|
@ -21,7 +24,7 @@ requires = ["poetry-core>=1.0.0"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
[tool.poetry.scripts]
|
||||||
task-status = 'checkcert.checkcert:main'
|
checkcert = 'checkcert.checkcert:main'
|
||||||
|
|
||||||
[tool.semantic_release]
|
[tool.semantic_release]
|
||||||
version_variable = [
|
version_variable = [
|
||||||
|
|
Loading…
Reference in a new issue