From 9a407495f8106e87ca3d8b69e355872fa573c985 Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Tue, 15 Oct 2024 15:01:10 -0400 Subject: [PATCH] :bookmark: release 1.3.0 --- pyproject.toml | 2 +- spiderweb/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d351fe6..5ea5fba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spiderweb-framework" -version = "1.2.1" +version = "1.3.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 fe54b39..9ce1dba 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.2.1" +__version__ = "1.3.0" # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie REGEX_COOKIE_NAME = r"^[a-zA-Z0-9\s\(\)<>@,;:\/\\\[\]\?=\{\}\"\t]*$"