From bfe05d626a6e0440046c5d26d631f401eea935f4 Mon Sep 17 00:00:00 2001 From: David Vujic Date: Mon, 16 Dec 2024 07:25:39 +0100 Subject: [PATCH 1/2] docs: add info about PyScript --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d038348..83e710b 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ _This project started out as a fun coding challenge, and now evolving into somet ## Usage Create server side HTML using plain Python data structures. -This library should also be possible to combine with PyScript, but I haven't tested that out yet. +You can also use it with __PyScript__. ## Example @@ -108,6 +108,7 @@ The HTML equivalent is: ## Resources +- [PyScript and python-hiccup example](https://pyscript.com/@davidvujic/pyscript-jokes-with-a-hiccup/latest?files=main.py) - PyScript Jokes with a Hiccup - [Hiccup](https://github.com/weavejester/hiccup) - the original implementation, for Clojure. From 311af173c242f116e8be1c0e8ebd069b8e828017 Mon Sep 17 00:00:00 2001 From: David Vujic Date: Mon, 16 Dec 2024 07:25:49 +0100 Subject: [PATCH 2/2] bump version to 0.3.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7ebd97d..0692337 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "python-hiccup" -version = "0.3.1" +version = "0.3.2" description = "Python Hiccup is a library for representing HTML using plain Python data structures" readme = "README.md" requires-python = ">=3.10"