Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
laurmaedje committed Oct 18, 2024
1 parent 0ba1128 commit 737895d
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 37 deletions.
36 changes: 18 additions & 18 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 14 additions & 14 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ default-members = ["crates/typst-cli"]
resolver = "2"

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

[workspace.dependencies]
typst = { path = "crates/typst", version = "0.12.0-rc2" }
typst-cli = { path = "crates/typst-cli", version = "0.12.0-rc2" }
typst-ide = { path = "crates/typst-ide", version = "0.12.0-rc2" }
typst-kit = { path = "crates/typst-kit", version = "0.12.0-rc2" }
typst-macros = { path = "crates/typst-macros", version = "0.12.0-rc2" }
typst-pdf = { path = "crates/typst-pdf", version = "0.12.0-rc2" }
typst-render = { path = "crates/typst-render", version = "0.12.0-rc2" }
typst-svg = { path = "crates/typst-svg", version = "0.12.0-rc2" }
typst-syntax = { path = "crates/typst-syntax", version = "0.12.0-rc2" }
typst-timing = { path = "crates/typst-timing", version = "0.12.0-rc2" }
typst-utils = { path = "crates/typst-utils", version = "0.12.0-rc2" }
typst-assets = "0.12.0-rc2"
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "e9f8127" }
typst = { path = "crates/typst", version = "0.12.0" }
typst-cli = { path = "crates/typst-cli", version = "0.12.0" }
typst-ide = { path = "crates/typst-ide", version = "0.12.0" }
typst-kit = { path = "crates/typst-kit", version = "0.12.0" }
typst-macros = { path = "crates/typst-macros", version = "0.12.0" }
typst-pdf = { path = "crates/typst-pdf", version = "0.12.0" }
typst-render = { path = "crates/typst-render", version = "0.12.0" }
typst-svg = { path = "crates/typst-svg", version = "0.12.0" }
typst-syntax = { path = "crates/typst-syntax", version = "0.12.0" }
typst-timing = { path = "crates/typst-timing", version = "0.12.0" }
typst-utils = { path = "crates/typst-utils", version = "0.12.0" }
typst-assets = "0.12.0"
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", tag = "v0.12.0" }
arrayvec = "0.7.4"
az = "1.2"
base64 = "0.22"
Expand Down
9 changes: 6 additions & 3 deletions docs/changelog/unreleased.md → docs/changelog/0.12.0.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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" />
2 changes: 1 addition & 1 deletion docs/changelog/welcome.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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")),
Expand Down

0 comments on commit 737895d

Please sign in to comment.