Skip to content

Commit d8f47e1

Browse files
committed
Routine chores
- Add the ability to have label as None. - Bump version: 0.4.14 -> 0.4.15.
1 parent 8d90f46 commit d8f47e1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyaether"
3-
version = "0.4.14"
3+
version = "0.4.15"
44
description = "DSL for writing HTML user interfaces in Python."
55
authors = [{ name = "Saurabh Ghanekar", email = "ghanekarsaurabh8@gmail.com" }]
66
license = "BSD-2-Clause"

src/aether/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def render(*elements: BaseWebElement, stringify: bool = True) -> str:
99
return mark_safe("").join(rendered_elements)
1010

1111

12-
__version__ = "0.4.14"
12+
__version__ = "0.4.15"
1313
__all__ = [
1414
"render",
1515
"BaseAttribute",

src/aether/plugins/chartjs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
class ChartJSDataset(BaseModel):
1111
model_config = ConfigDict(extra="allow")
1212

13-
label: str
13+
label: str | None
1414
data: list[Any]
1515
backgroundColor: str | list[str] | None = None
1616
borderColor: str | list[str] | None = None

0 commit comments

Comments
 (0)