summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2024-10-18 16:31:40 +0200
committerLaurenz <laurmaedje@gmail.com>2024-10-18 16:36:55 +0200
commit737895d769188f6fc154523e67a9102bc24c872e (patch)
tree842daef4f6ee3e94ec23fc0183cf0ae17a6ad7ae /docs
parent0ba1128e5a6d8bcae09fde921ad429b1b0589737 (diff)
Version bumpv0.12.00.12
Diffstat (limited to 'docs')
-rw-r--r--docs/changelog/0.12.0.md (renamed from docs/changelog/unreleased.md)9
-rw-r--r--docs/changelog/welcome.md2
-rw-r--r--docs/src/lib.rs2
3 files changed, 8 insertions, 5 deletions
diff --git a/docs/changelog/unreleased.md b/docs/changelog/0.12.0.md
index bea49f04..835e2b1c 100644
--- a/docs/changelog/unreleased.md
+++ b/docs/changelog/0.12.0.md
@@ -1,9 +1,9 @@
---
-title: Unreleased
-description: Changes that are not yet released
+title: 0.12.0
+description: Changes in Typst 0.12.0
---
-# Unreleased changes
+# Version 0.12.0 (October 18, 2024)
## Highlights
- Added support for multi-column floating [placement]($place.scope) and
@@ -397,3 +397,6 @@ description: Changes that are not yet released
- Removed `Tracer` in favor of `Warned<T>` and `typst::trace` function
- The `xz2` dependency used by the self-updater is now statically linked
- The Dockerfile now has an `ENTRYPOINT` directive
+
+## Contributors
+<contributors from="v0.11.0" to="v0.12.0" />
diff --git a/docs/changelog/welcome.md b/docs/changelog/welcome.md
index 302c3ede..12b6b896 100644
--- a/docs/changelog/welcome.md
+++ b/docs/changelog/welcome.md
@@ -10,7 +10,7 @@ forward. This section documents all changes to Typst since its initial public
release.
## Versions
-- [Unreleased]($changelog/unreleased)
+- [Typst 0.12.0]($changelog/0.12.0)
- [Typst 0.11.1]($changelog/0.11.1)
- [Typst 0.11.0]($changelog/0.11.0)
- [Typst 0.10.0]($changelog/0.10.0)
diff --git a/docs/src/lib.rs b/docs/src/lib.rs
index a30ed088..59fc1cbf 100644
--- a/docs/src/lib.rs
+++ b/docs/src/lib.rs
@@ -183,7 +183,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/unreleased.md")),
+ md_page(resolver, &base, load!("changelog/0.12.0.md")),
md_page(resolver, &base, load!("changelog/0.11.1.md")),
md_page(resolver, &base, load!("changelog/0.11.0.md")),
md_page(resolver, &base, load!("changelog/0.10.0.md")),