diff --git a/pyaction/__init__.py b/pyaction/__init__.py index dc088f0..f270ebc 100644 --- a/pyaction/__init__.py +++ b/pyaction/__init__.py @@ -2,7 +2,7 @@ from pyaction.workflow import PyAction # noqa -__version__ = "0.8.1" +__version__ = "0.8.2" __author__ = "Sadra Yahyapour" __email__ = "lnxpylnxpy@gmail.com" diff --git a/pyaction/action_template/{{action_slug}}/pyproject.toml.jinja b/pyaction/action_template/{{action_slug}}/pyproject.toml.jinja index c62a26f..2ad8c8d 100644 --- a/pyaction/action_template/{{action_slug}}/pyproject.toml.jinja +++ b/pyaction/action_template/{{action_slug}}/pyproject.toml.jinja @@ -4,10 +4,10 @@ version = "0.0.1" description = "{{ description }}" readme = "README.md" requires-python = ">={{ python_version }}" -dependencies = ["pyaction==0.8.1"] +dependencies = ["pyaction==0.8.2"] [tool.setuptools.packages.find] exclude = ["test*"] [project.optional-dependencies] -cli = ["pyaction[cli]==0.8.1"] +cli = ["pyaction[cli]==0.8.2"] diff --git a/pyproject.toml b/pyproject.toml index 4abee4e..bca59bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "pyaction" -version = "0.8.1" +version = "0.8.2" description = "Create GitHub Actions using Python" authors = [{ name = "Sadra Yahyapour", email = "lnxpylnxpy@gmail.com" }] requires-python = ">=3.9" @@ -41,7 +41,7 @@ Repository = "https://github.com/lnxpy/pyaction" exclude = ["test*"] [tool.bumpversion] -current_version = "0.8.1" +current_version = "0.8.2" commit = "true" tag = "true"