diff --git a/CHANGELOG.md b/CHANGELOG.md index 7430f8d..70a2e38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ ## [Unreleased] +## [0.5.1] - 2026-04-03 + ### Fixed - Fixed `todo` option of `task` to propagate globally diff --git a/README.md b/README.md index cc98876..098aec2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Breaking changes in new versions are to be expected. ## Quick Start ```typst -#import "@preview/sheetstorm:0.5.0": * +#import "@preview/sheetstorm:0.5.1": * #show: assignment.with( title: "My title", diff --git a/docs/manual.pdf b/docs/manual.pdf index 9a47bc1..9cd3713 100644 Binary files a/docs/manual.pdf and b/docs/manual.pdf differ diff --git a/examples/appendix.typ b/examples/appendix.typ index 4be738a..66ed37a 100644 --- a/examples/appendix.typ +++ b/examples/appendix.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": appendix, assignment, task +#import "@preview/sheetstorm:0.5.1": appendix, assignment, task #show: assignment.with( title: "Assignment with Appendix", diff --git a/examples/assignment.typ b/examples/assignment.typ index 6f7814c..c73f783 100644 --- a/examples/assignment.typ +++ b/examples/assignment.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": * +#import "@preview/sheetstorm:0.5.1": * #show: assignment.with( course: smallcaps[Sheetstorm 101], diff --git a/examples/german.typ b/examples/german.typ index a867d4a..e48c824 100644 --- a/examples/german.typ +++ b/examples/german.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": assignment, task +#import "@preview/sheetstorm:0.5.1": assignment, task #set text(lang: "de") diff --git a/examples/minimal.typ b/examples/minimal.typ index 400a90f..8006881 100644 --- a/examples/minimal.typ +++ b/examples/minimal.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": assignment, task +#import "@preview/sheetstorm:0.5.1": assignment, task #show: assignment diff --git a/examples/task-config.typ b/examples/task-config.typ index dc8dfc8..bf44685 100644 --- a/examples/task-config.typ +++ b/examples/task-config.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": assignment, subtask, task, theorem +#import "@preview/sheetstorm:0.5.1": assignment, subtask, task, theorem #show: assignment.with( title: "Task Configuration Example", diff --git a/examples/theorems.typ b/examples/theorems.typ index 66d7204..710ccad 100644 --- a/examples/theorems.typ +++ b/examples/theorems.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": ( +#import "@preview/sheetstorm:0.5.1": ( assignment, corollary, definition, example, lemma, proof, task, theorem, ) diff --git a/examples/todo.typ b/examples/todo.typ index 6c96178..56cb1b9 100644 --- a/examples/todo.typ +++ b/examples/todo.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": assignment, subtask, task, todo, todo-box +#import "@preview/sheetstorm:0.5.1": assignment, subtask, task, todo, todo-box #show: assignment.with( title: "Assignment with TODO's", diff --git a/template/assignment.typ b/template/assignment.typ index dde4a29..a7f8f82 100644 --- a/template/assignment.typ +++ b/template/assignment.typ @@ -1,4 +1,4 @@ -#import "@preview/sheetstorm:0.5.0": * +#import "@preview/sheetstorm:0.5.1": * #show: assignment.with( title: "My title", diff --git a/tests/examples/appendix/test.typ b/tests/examples/appendix/test.typ index 380d90c..7f1c1ad 100644 --- a/tests/examples/appendix/test.typ +++ b/tests/examples/appendix/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": appendix, assignment, task +#import "@local/sheetstorm:0.5.1": appendix, assignment, task #show: assignment.with( title: "Assignment with Appendix", diff --git a/tests/examples/assignment/test.typ b/tests/examples/assignment/test.typ index a2e810f..73a3a1d 100644 --- a/tests/examples/assignment/test.typ +++ b/tests/examples/assignment/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": * +#import "@local/sheetstorm:0.5.1": * #show: assignment.with( course: smallcaps[Sheetstorm 101], diff --git a/tests/examples/german/test.typ b/tests/examples/german/test.typ index 3e5593d..96cbf34 100644 --- a/tests/examples/german/test.typ +++ b/tests/examples/german/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": assignment, task +#import "@local/sheetstorm:0.5.1": assignment, task #set text(lang: "de") diff --git a/tests/examples/minimal/test.typ b/tests/examples/minimal/test.typ index 4c1d77a..9c4d2f1 100644 --- a/tests/examples/minimal/test.typ +++ b/tests/examples/minimal/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": assignment, task +#import "@local/sheetstorm:0.5.1": assignment, task #show: assignment diff --git a/tests/examples/task-config/test.typ b/tests/examples/task-config/test.typ index 3219828..fc77e5e 100644 --- a/tests/examples/task-config/test.typ +++ b/tests/examples/task-config/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": assignment, subtask, task, theorem +#import "@local/sheetstorm:0.5.1": assignment, subtask, task, theorem #show: assignment.with( title: "Task Configuration Example", diff --git a/tests/examples/theorems/test.typ b/tests/examples/theorems/test.typ index 6c6d30c..0b57b71 100644 --- a/tests/examples/theorems/test.typ +++ b/tests/examples/theorems/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": ( +#import "@local/sheetstorm:0.5.1": ( assignment, corollary, definition, example, lemma, proof, task, theorem, ) diff --git a/tests/examples/todo/test.typ b/tests/examples/todo/test.typ index 3185f86..513c13c 100644 --- a/tests/examples/todo/test.typ +++ b/tests/examples/todo/test.typ @@ -1,4 +1,4 @@ -#import "@local/sheetstorm:0.5.0": assignment, subtask, task, todo, todo-box +#import "@local/sheetstorm:0.5.1": assignment, subtask, task, todo, todo-box #show: assignment.with( title: "Assignment with TODO's", diff --git a/thumbnail.png b/thumbnail.png index e72815c..be7ffa1 100644 Binary files a/thumbnail.png and b/thumbnail.png differ diff --git a/typst.toml b/typst.toml index a1d12c8..fcb0f8d 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "sheetstorm" -version = "0.5.0" +version = "0.5.1" compiler = "0.13.1" entrypoint = "src/lib.typ" authors = [