From d2911d5a7bf75317311aafe533211aba8756cc73 Mon Sep 17 00:00:00 2001 From: lovasoa Date: Fri, 4 Aug 2023 09:57:52 +0200 Subject: [PATCH] 0.9.4 --- CHANGELOG.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb34731b..8caeadc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG.md +## 0.9.4 (2023-08-04) + +Small bugfix release + + - Fix a bug with simple queries (ones with only static values) that contained multiple repeated columns + (such as `SELECT 'hello' AS menu_item, 'world' AS menu_item`). Only the last column would be taken into account. + This could manifest as a bug where + - only the last menu item in the shell component would be displayed, + - only the last markdown column in a table would be interpreted as markdown, + - only the last icon column in a table would be displayed as an icon. + ## 0.9.3 (2023-08-03) - Icons are now loaded directly from the sqlpage binary instead of loading them from a CDN. diff --git a/Cargo.lock b/Cargo.lock index 1c92ba2f..3d4e36da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2225,7 +2225,7 @@ dependencies = [ [[package]] name = "sqlpage" -version = "0.9.3" +version = "0.9.4" dependencies = [ "actix-rt", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 77f3e1ec..711d6aec 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sqlpage" -version = "0.9.3" +version = "0.9.4" edition = "2021" description = "A SQL-only web application framework. Takes .sql files and formats the query result using pre-made configurable professional-looking components." keywords = ["web", "sql", "framework"]