Skip to content

Commit

Permalink
Merge pull request #14 from pvarki/ocsp_expiry
Browse files Browse the repository at this point in the history
Give OCSP response expiry time to the signer call
  • Loading branch information
rambo authored Mar 23, 2024
2 parents dccb69f + f42b8bf commit 7849dfb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.2
commit = False
tag = False

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ocsprest"
version = "1.0.1"
version = "1.0.2"
description = ""
authors = ["Eero af Heurlin <eero.afheurlin@iki.fi>"]
readme = "README.rst"
Expand Down
2 changes: 1 addition & 1 deletion src/ocsprest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Quick and dirty rest API to call the ocsp signing methods for CFSSL CLI"""
__version__ = "1.0.1"
__version__ = "1.0.2"
1 change: 1 addition & 0 deletions src/ocsprest/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ async def refresh_oscp() -> int:
f"-ca-key {cnf.cakey}",
f"-responder {cnf.respcrt}",
f"-responder-key {cnf.respkey}",
f"-interval {cnf.crl_lifetime}",
f"-loglevel {cfssl_loglevel()}",
]
cmd = " ".join(args)
Expand Down
2 changes: 1 addition & 1 deletion tests/test_ocsprest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

def test_version() -> None:
"""Make sure version matches expected"""
assert __version__ == "1.0.1"
assert __version__ == "1.0.2"


def test_healthcheck(client: TestClient) -> None:
Expand Down

0 comments on commit 7849dfb

Please sign in to comment.