Skip to content

Commit 737895d

Browse files
committed
Version bump
1 parent 0ba1128 commit 737895d

File tree

5 files changed

+40
-37
lines changed

5 files changed

+40
-37
lines changed

Cargo.lock

Lines changed: 18 additions & 18 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ default-members = ["crates/typst-cli"]
44
resolver = "2"
55

66
[workspace.package]
7-
version = "0.12.0-rc2"
7+
version = "0.12.0"
88
rust-version = "1.77" # also change in ci.yml
99
authors = ["The Typst Project Developers"]
1010
edition = "2021"
@@ -16,19 +16,19 @@ keywords = ["typst"]
1616
readme = "README.md"
1717

1818
[workspace.dependencies]
19-
typst = { path = "crates/typst", version = "0.12.0-rc2" }
20-
typst-cli = { path = "crates/typst-cli", version = "0.12.0-rc2" }
21-
typst-ide = { path = "crates/typst-ide", version = "0.12.0-rc2" }
22-
typst-kit = { path = "crates/typst-kit", version = "0.12.0-rc2" }
23-
typst-macros = { path = "crates/typst-macros", version = "0.12.0-rc2" }
24-
typst-pdf = { path = "crates/typst-pdf", version = "0.12.0-rc2" }
25-
typst-render = { path = "crates/typst-render", version = "0.12.0-rc2" }
26-
typst-svg = { path = "crates/typst-svg", version = "0.12.0-rc2" }
27-
typst-syntax = { path = "crates/typst-syntax", version = "0.12.0-rc2" }
28-
typst-timing = { path = "crates/typst-timing", version = "0.12.0-rc2" }
29-
typst-utils = { path = "crates/typst-utils", version = "0.12.0-rc2" }
30-
typst-assets = "0.12.0-rc2"
31-
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "e9f8127" }
19+
typst = { path = "crates/typst", version = "0.12.0" }
20+
typst-cli = { path = "crates/typst-cli", version = "0.12.0" }
21+
typst-ide = { path = "crates/typst-ide", version = "0.12.0" }
22+
typst-kit = { path = "crates/typst-kit", version = "0.12.0" }
23+
typst-macros = { path = "crates/typst-macros", version = "0.12.0" }
24+
typst-pdf = { path = "crates/typst-pdf", version = "0.12.0" }
25+
typst-render = { path = "crates/typst-render", version = "0.12.0" }
26+
typst-svg = { path = "crates/typst-svg", version = "0.12.0" }
27+
typst-syntax = { path = "crates/typst-syntax", version = "0.12.0" }
28+
typst-timing = { path = "crates/typst-timing", version = "0.12.0" }
29+
typst-utils = { path = "crates/typst-utils", version = "0.12.0" }
30+
typst-assets = "0.12.0"
31+
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", tag = "v0.12.0" }
3232
arrayvec = "0.7.4"
3333
az = "1.2"
3434
base64 = "0.22"

docs/changelog/unreleased.md renamed to docs/changelog/0.12.0.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: Unreleased
3-
description: Changes that are not yet released
2+
title: 0.12.0
3+
description: Changes in Typst 0.12.0
44
---
55

6-
# Unreleased changes
6+
# Version 0.12.0 (October 18, 2024)
77

88
## Highlights
99
- Added support for multi-column floating [placement]($place.scope) and
@@ -397,3 +397,6 @@ description: Changes that are not yet released
397397
- Removed `Tracer` in favor of `Warned<T>` and `typst::trace` function
398398
- The `xz2` dependency used by the self-updater is now statically linked
399399
- The Dockerfile now has an `ENTRYPOINT` directive
400+
401+
## Contributors
402+
<contributors from="v0.11.0" to="v0.12.0" />

docs/changelog/welcome.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ forward. This section documents all changes to Typst since its initial public
1010
release.
1111

1212
## Versions
13-
- [Unreleased]($changelog/unreleased)
13+
- [Typst 0.12.0]($changelog/0.12.0)
1414
- [Typst 0.11.1]($changelog/0.11.1)
1515
- [Typst 0.11.0]($changelog/0.11.0)
1616
- [Typst 0.10.0]($changelog/0.10.0)

docs/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ fn changelog_pages(resolver: &dyn Resolver) -> PageModel {
183183
let mut page = md_page(resolver, resolver.base(), load!("changelog/welcome.md"));
184184
let base = format!("{}changelog/", resolver.base());
185185
page.children = vec![
186-
md_page(resolver, &base, load!("changelog/unreleased.md")),
186+
md_page(resolver, &base, load!("changelog/0.12.0.md")),
187187
md_page(resolver, &base, load!("changelog/0.11.1.md")),
188188
md_page(resolver, &base, load!("changelog/0.11.0.md")),
189189
md_page(resolver, &base, load!("changelog/0.10.0.md")),

0 commit comments

Comments
 (0)