From 50f550df71c20c67724d0b3014a330a615e3bb98 Mon Sep 17 00:00:00 2001 From: Jones-peter Date: Wed, 7 Jan 2026 10:25:49 +0530 Subject: [PATCH 1/2] Fix : *.png added in .toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 612d33c..1e22694 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -89,6 +89,7 @@ jsweb = [ "templates/*.html", "static/*.css", "static/*.js", + "static/*.png", # Project generation templates "project_templates/*.jinja", From 64b7b79a5816cdc7c554ab522aa2c0a90b1c5f07 Mon Sep 17 00:00:00 2001 From: Jones-peter Date: Wed, 7 Jan 2026 12:45:13 +0530 Subject: [PATCH 2/2] Release : Version changed for release v1.2.1 --- jsweb/__init__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jsweb/__init__.py b/jsweb/__init__.py index aefef58..cc74143 100644 --- a/jsweb/__init__.py +++ b/jsweb/__init__.py @@ -28,4 +28,4 @@ from .response import url_for -__VERSION__ = "1.2.0" +__VERSION__ = "1.2.1" diff --git a/pyproject.toml b/pyproject.toml index 1e22694..0272c18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "jsweb" -version = "1.2.0" +version = "1.2.1" description = "JsWeb - A lightweight and modern Python web framework designed for speed and simplicity." readme = "README.md" requires-python = ">=3.8"