From 1b7ceb900b98787b19cc3bae817ff1eba8162e0c Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Mon, 16 Sep 2024 18:23:08 -0400 Subject: [PATCH] :bookmark: release 1.2.0 --- pyproject.toml | 2 +- spiderweb/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index b4582ff..8c6668f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spiderweb-framework" -version = "1.1.0" +version = "1.2.0" description = "A small web framework, just big enough for a spider." authors = ["Joe Kaufeld "] readme = "README.md" diff --git a/spiderweb/constants.py b/spiderweb/constants.py index e526f63..c930665 100644 --- a/spiderweb/constants.py +++ b/spiderweb/constants.py @@ -2,7 +2,7 @@ from peewee import DatabaseProxy DEFAULT_ALLOWED_METHODS = ["POST", "GET", "PUT", "PATCH", "DELETE"] DEFAULT_ENCODING = "UTF-8" -__version__ = "1.1.0" +__version__ = "1.2.0" # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie REGEX_COOKIE_NAME = r"^[a-zA-Z0-9\s\(\)<>@,;:\/\\\[\]\?=\{\}\"\t]*$"