diff --git a/pyproject.toml b/pyproject.toml index 93abb34..67f2d3a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "simplestapi" -version = "0.1.4" +version = "0.1.5" description = "SimpleAPI is a minimalistic, unopinionated web framework for Python, inspired by FastAPI & Flask" authors = ["Adham Salama "] license = "MIT" diff --git a/simpleapi/__init__.py b/simpleapi/__init__.py index 5297e1f..5cd8364 100644 --- a/simpleapi/__init__.py +++ b/simpleapi/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.2" +__version__ = "0.1.5" from .custom_types import RouteHandler, ViewFunction, Middleware, Query from .request import Request