diff --git a/README.md b/README.md
index 08ce598..1a0a031 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ This package lets you render sequence diagrams directly in Typst. The following
```typst
-#import "@preview/chronos:0.2.1"
+#import "@preview/chronos:0.2.2"
#chronos.diagram({
import chronos: *
_par("Alice")
diff --git a/manual.pdf b/manual.pdf
index 7493fb9..2875d03 100644
Binary files a/manual.pdf and b/manual.pdf differ
diff --git a/src/lib.typ b/src/lib.typ
index 2575674..ccae827 100644
--- a/src/lib.typ
+++ b/src/lib.typ
@@ -1,4 +1,4 @@
-#let version = version(0, 2, 1)
+#let version = version(0, 2, 2)
#import "diagram.typ": diagram, from-plantuml, _gap, _evt, _col
#import "sequence.typ": _seq, _ret
diff --git a/typst.toml b/typst.toml
index 54d8602..efb749b 100644
--- a/typst.toml
+++ b/typst.toml
@@ -1,6 +1,6 @@
[package]
name = "chronos"
-version = "0.2.1"
+version = "0.2.2"
compiler = "0.13.1"
repository = "https://git.kb28.ch/HEL/chronos"
entrypoint = "src/lib.typ"
|