summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2025-03-07 11:03:52 +0100
committerLaurenz <laurmaedje@gmail.com>2025-03-07 11:10:26 +0100
commit81e9bc7c8febc460ef470c0f555aa3d21b78c0c5 (patch)
tree9888ed9b3ba9c4a9f27f492c1d97c51429518a8b
parent381ff0cc2cf05f3d830f7ed96e9e6819b3ad2d7d (diff)
0.13.1 changelog (#6025)
-rw-r--r--docs/changelog/0.13.1.md26
-rw-r--r--docs/changelog/welcome.md1
-rw-r--r--docs/src/lib.rs1
3 files changed, 28 insertions, 0 deletions
diff --git a/docs/changelog/0.13.1.md b/docs/changelog/0.13.1.md
new file mode 100644
index 00000000..15bd9f6d
--- /dev/null
+++ b/docs/changelog/0.13.1.md
@@ -0,0 +1,26 @@
+---
+title: 0.13.1
+description: Changes in Typst 0.13.1
+---
+
+# Version 0.13.1
+
+## Command Line Interface
+- Fixed high CPU usage for `typst watch` on Linux. Depending on the project
+ size, CPU usage would spike for varying amounts of time. This bug appeared
+ with 0.13.0 due to a behavioral change in the inotify file watching backend.
+
+## HTML export
+- Fixed export of tables with [gutters]($table.gutter)
+- Fixed usage of `<html>` and `<body>` element within [context]
+- Fixed querying of [metadata] next to `<html>` and `<body>` element
+
+## Visualization
+- Fixed [curves]($curve) with multiple non-closed components
+
+## Introspection
+- Fixed a regression where labelled [symbols]($symbol) could not be
+ [queried]($query) by label
+
+## Deprecations
+- Fixed false positives in deprecation warnings for type/str comparisons
diff --git a/docs/changelog/welcome.md b/docs/changelog/welcome.md
index 8fb85f87..7611f1c4 100644
--- a/docs/changelog/welcome.md
+++ b/docs/changelog/welcome.md
@@ -10,6 +10,7 @@ forward. This section documents all changes to Typst since its initial public
release.
## Versions
+- [Typst 0.13.1]($changelog/0.13.1)
- [Typst 0.13.0]($changelog/0.13.0)
- [Typst 0.12.0]($changelog/0.12.0)
- [Typst 0.11.1]($changelog/0.11.1)
diff --git a/docs/src/lib.rs b/docs/src/lib.rs
index e9771738..091bb1b2 100644
--- a/docs/src/lib.rs
+++ b/docs/src/lib.rs
@@ -188,6 +188,7 @@ fn changelog_pages(resolver: &dyn Resolver) -> PageModel {
let mut page = md_page(resolver, resolver.base(), load!("changelog/welcome.md"));
let base = format!("{}changelog/", resolver.base());
page.children = vec![
+ md_page(resolver, &base, load!("changelog/0.13.1.md")),
md_page(resolver, &base, load!("changelog/0.13.0.md")),
md_page(resolver, &base, load!("changelog/0.12.0.md")),
md_page(resolver, &base, load!("changelog/0.11.1.md")),