From 53993c71d4f4eb059ca932050767afd04599e695 Mon Sep 17 00:00:00 2001 From: Fasil | Python/Odoo Developer Date: Thu, 28 Nov 2024 11:15:45 +0300 Subject: [PATCH] Release v0.1.4 - Added route_data into Model - Route Data Passing - Added `actions` to bind event handlers - Added 'on_submit' into event_attrs --- pyproject.toml | 2 +- src/flet_model/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d51d6eb..03a5cf7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "flet-model" -version = "0.1.3" +version = "0.1.4" description = "A Model-based router for Flet applications that simplifies the creation of multi-page applications" readme = "README.md" authors = [{ name = "Fasil", email = "fasilwdr@hotmail.com" }] diff --git a/src/flet_model/__init__.py b/src/flet_model/__init__.py index 34ab375..2d1e11b 100644 --- a/src/flet_model/__init__.py +++ b/src/flet_model/__init__.py @@ -1,6 +1,6 @@ from .model import Model from .router import Router -__version__ = "0.1.3" +__version__ = "0.1.4" __all__ = ["Model", "Router"] \ No newline at end of file