From 7ee119d42d54409419f5bfe6e271d5d6beff2944 Mon Sep 17 00:00:00 2001 From: Joe Kaufeld Date: Mon, 9 Sep 2024 01:44:09 -0400 Subject: [PATCH] :bookmark: release 1.1.0 --- pyproject.toml | 2 +- spiderweb/constants.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fb6baf0..b4582ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "spiderweb-framework" -version = "1.0.0" +version = "1.1.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 ec9c8de..e526f63 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.0.0" +__version__ = "1.1.0" # https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie REGEX_COOKIE_NAME = r"^[a-zA-Z0-9\s\(\)<>@,;:\/\\\[\]\?=\{\}\"\t]*$"