diff --git a/nctl/__init__.py b/nctl/__init__.py index c9f5f88..9740675 100644 --- a/nctl/__init__.py +++ b/nctl/__init__.py @@ -6,7 +6,7 @@ from nctl.ngrok import tunnel # noqa: F401 -version = "0.0.0-a" +version = "0.0.1" @click.command() diff --git a/pyproject.toml b/pyproject.toml index 2ad0cb5..9ed5eea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,8 +7,9 @@ authors = [{ name = "Vignesh Rao", email = "svignesh1793@gmail.com" }] license = { file = "LICENSE" } classifiers = [ "License :: OSI Approved :: MIT License", - "Programming Language :: Python :: 3", - "Development Status :: 3 - Alpha", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", + "Development Status :: 5 - Production/Stable", "Operating System :: MacOS :: MacOS X", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux" diff --git a/release_notes.rst b/release_notes.rst index 9fe6bd9..4c8ac36 100644 --- a/release_notes.rst +++ b/release_notes.rst @@ -1,6 +1,11 @@ Release Notes ============= +v0.0.1 (08/17/2024) +------------------- +- Allows env vars to be sourced from both ``env_file`` and ``kwargs`` +- Includes redefined logging experience with a simple setup and a detailed runbook + v0.0.0-a (08/13/2024) --------------------- - Add CLI functionality