From 9dc3013c406908d98e5daa8d223bc1bc7c889ad0 Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Wed, 21 Aug 2024 21:08:35 -0400 Subject: [PATCH] :bookmark: mark 0.10.0 --- pyproject.toml | 2 +- spiderweb/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]*$"