diff --git a/README.md b/README.md index 82bac32..41bc140 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,6 @@ Available configuration options: --uds TEXT Bind to a UNIX domain socket. --workers INTEGER Number of worker processes. Defaults to the $WEB_CONCURRENCY environment variable if available, or 1. ---version Show the version and exit. --help Show this message and exit. ``` diff --git a/pssecret_server/cli.py b/pssecret_server/cli.py index 359fc19..ca89451 100644 --- a/pssecret_server/cli.py +++ b/pssecret_server/cli.py @@ -1,5 +1,3 @@ -from importlib.metadata import version - import click import uvicorn @@ -23,6 +21,5 @@ import uvicorn ), type=int, ) -@click.version_option(version("pssecret_server")) def cli(**kwargs) -> None: uvicorn.run("pssecret_server.main:app", **kwargs) diff --git a/pyproject.toml b/pyproject.toml index e01efcb..2e3ce90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pssecret-server" -version = "1.1.2" +version = "1.1.1" description = "API service for secrets sharing over network" authors = ["Ivan Golikov "] license = "BSD-3-Clause"