From 3c9cdce1597d6dd2f40910cfb2f6c0a71fd9e363 Mon Sep 17 00:00:00 2001 From: Vignesh Rao Date: Sun, 11 Aug 2024 14:53:38 -0500 Subject: [PATCH] Release `v0.0.1` --- pyninja/__init__.py | 2 +- release_notes.rst | 15 ++++++++++++--- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/pyninja/__init__.py b/pyninja/__init__.py index 155004e..b784028 100644 --- a/pyninja/__init__.py +++ b/pyninja/__init__.py @@ -7,7 +7,7 @@ from pyninja.main import start # noqa: F401 -version = "0.0.0" +version = "0.0.1" @click.command() diff --git a/release_notes.rst b/release_notes.rst index 2e300ff..dd3b40b 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -1,9 +1,18 @@ Release Notes ============= -0.0.0 (08/10/2024) ------------------- -- Release stable version +v0.0.1 (08/11/2024) +------------------- +- Includes a process monitor and remote command execution functionality +- Security improvements including brute force protection and rate limiting +- Accepts ``JSON`` and ``YAML`` files for env config +- Supports custom worker count for ``uvicorn`` server +- Allows custom logging using ``logging.ini`` +- Includes an option to set the ``apikey`` via commandline + +v0.0.0 (08/11/2024) +------------------- +- Release first stable version 0.0.0-a (08/10/2024) --------------------