diff --git a/lambda_calculus/__init__.py b/lambda_calculus/__init__.py index fd54627..d61113e 100644 --- a/lambda_calculus/__init__.py +++ b/lambda_calculus/__init__.py @@ -4,7 +4,7 @@ from .terms import Variable, Abstraction, Application -__version__ = "2.2.2" +__version__ = "2.2.3" __author__ = "Eric Niklas Wolf" __email__ = "eric_niklas.wolf@mailbox.tu-dresden.de" __all__ = ( diff --git a/pyproject.toml b/pyproject.toml index 285b0d1..d51a855 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "lambda_calculus" -version = "2.2.2" +version = "2.2.3" description = "Implementation of the Lambda calculus" requires-python = ">=3.10" keywords = [] @@ -47,6 +47,7 @@ warn_unreachable = true [tool.sphinx-pyproject] project = "lambda_calculus" +copyright = "2022 Eric Wolf" html_theme = "sphinx_rtd_theme" extensions = [ "sphinx.ext.intersphinx",