From 14fa6177190c2086bb36e222f413f0df82228368 Mon Sep 17 00:00:00 2001 From: Togglebit Date: Thu, 11 Sep 2025 17:31:14 +0200 Subject: [PATCH] version bump to 0.2.12-beta --- CHANGES.md | 1 + Cargo.toml | 24 ++++++++++++------------ anathema-testutils/Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index c2eb4567..1a823f74 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,7 @@ * Globals can now be registered with the runtime * `attributes.value_as::` is now available on `Attributes` * Performance improvements + * New template function: `len` * 0.2.11 * FEATURE: ranges * `padding` function diff --git a/Cargo.toml b/Cargo.toml index 4b1a7784..f20ef105 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "anathema" edition = "2024" -version = "0.2.11" +version = "0.2.12-beta" license = "MIT" description = "Create beautiful, easily customisable terminal applications" keywords = ["tui", "terminal", "widgets", "ui", "layout"] @@ -40,7 +40,7 @@ workspace = true [workspace.package] edition = "2024" -version = "0.2.11" +version = "0.2.12-beta" [workspace.dependencies] bitflags = "2.4.1" @@ -48,16 +48,16 @@ crossterm = "0.28.1" unicode-width = "0.1.11" flume = "0.11.0" notify = "6.1.1" -anathema-default-widgets = { path = "./anathema-default-widgets", version = "0.2.11" } -anathema-backend = { path = "./anathema-backend", version = "0.2.11" } -anathema-runtime = { path = "./anathema-runtime", version = "0.2.11" } -anathema-state = { path = "./anathema-state", version = "0.2.11" } -anathema-state-derive = { path = "./anathema-state-derive", version = "0.2.11" } -anathema-store = { path = "./anathema-store", version = "0.2.11" } -anathema-templates = { path = "./anathema-templates", version = "0.2.11" } -anathema-widgets = { path = "./anathema-widgets", version = "0.2.11" } -anathema-geometry = { path = "./anathema-geometry", version = "0.2.11" } -anathema-value-resolver = { path = "./anathema-value-resolver", version = "0.2.11" } +anathema-default-widgets = { path = "./anathema-default-widgets", version = "0.2.12-beta" } +anathema-backend = { path = "./anathema-backend", version = "0.2.12-beta" } +anathema-runtime = { path = "./anathema-runtime", version = "0.2.12-beta" } +anathema-state = { path = "./anathema-state", version = "0.2.12-beta" } +anathema-state-derive = { path = "./anathema-state-derive", version = "0.2.12-beta" } +anathema-store = { path = "./anathema-store", version = "0.2.12-beta" } +anathema-templates = { path = "./anathema-templates", version = "0.2.12-beta" } +anathema-widgets = { path = "./anathema-widgets", version = "0.2.12-beta" } +anathema-geometry = { path = "./anathema-geometry", version = "0.2.12-beta" } +anathema-value-resolver = { path = "./anathema-value-resolver", version = "0.2.12-beta" } [workspace] members = [ diff --git a/anathema-testutils/Cargo.toml b/anathema-testutils/Cargo.toml index 7a1e6a8c..e4ee4795 100644 --- a/anathema-testutils/Cargo.toml +++ b/anathema-testutils/Cargo.toml @@ -9,7 +9,7 @@ homepage = "https://github.com/togglebyte/anathema" repository = "https://github.com/togglebyte/anathema" [dependencies] -anathema = { path = "../", version = "0.2.11" } +anathema = { path = "../", version = "0.2.12-beta" } [lints] workspace = true