diff --git a/pyproject.toml b/pyproject.toml index 2218e93..1765be8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spiderweb" -version = "0.9.0" +version = "0.10.0" description = "A small web framework, just big enough to hold your average spider." authors = ["Joe Kaufeld "] readme = "README.md" diff --git a/spiderweb/constants.py b/spiderweb/constants.py index 31050e3..ecbd6bb 100644 --- a/spiderweb/constants.py +++ b/spiderweb/constants.py @@ -1,6 +1,6 @@ DEFAULT_ALLOWED_METHODS = ["GET"] DEFAULT_ENCODING = "ISO-8859-1" -__version__ = "0.9.0" +__version__ = "0.10.0" # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie REGEX_COOKIE_NAME = r"^[a-zA-Z0-9\s\(\)<>@,;:\/\\\[\]\?=\{\}\"\t]*$"