From a94e96c3c0b7ed06bf7c0434dc833bb78ab30aae Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Tue, 28 Nov 2023 15:30:48 +0000 Subject: [PATCH] changelog --- CHANGELOG.md | 12 ++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..0ca8800 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +Version 1.1.0 +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + + +[0.6.0] 2023-11-28 + +- Added app focus diff --git a/pyproject.toml b/pyproject.toml index f836f19..01c2bf8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "textual_web" -version = "0.5.4" +version = "0.6.0" description = "Serve Textual apps" authors = ["Will McGugan "] license = "MIT" @@ -9,7 +9,7 @@ readme = "README.md" [tool.poetry.dependencies] python = "^3.7" -textual = "0.35.1" +textual = "^0.43.0" aiohttp = "^3.8.4" uvloop = { version = "^0.17.0", markers = "sys_platform != 'win32'" } click = "^8.1.3"