Skip to content

Commit a9d5fac

Browse files
authored
bump version and small typo fix (#1004)
1 parent 8fc408d commit a9d5fac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "datastar-py"
33
description = "Helper functions and classes for the Datastar library (https://data-star.dev/)"
4-
version = "0.5.0"
4+
version = "0.6.0"
55
readme = "README.md"
66
authors = [
77
{ name = "Felix Ingram", email = "[email protected]" },

src/datastar_py/attributes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def on_raf(self, expression: str) -> OnRafAttr:
226226
def on_signal_patch(
227227
self, expression: str, include: str | None = None, exclude: str | None = None
228228
) -> OnSignalPatchAttr:
229-
"""Execute an expression when a signal patch taxes plase."""
229+
"""Execute an expression when a signal patch takes place."""
230230
attr = OnSignalPatchAttr(value=expression, alias=self._alias)
231231
if include or exclude:
232232
attr.filter(include, exclude)

0 commit comments

Comments
 (0)