Bump version on main (#5246)

This commit is contained in:
Laurenz 2024-10-19 10:08:42 +02:00 committed by GitHub
parent 15a26c6c45
commit 838dabc84c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 40 additions and 37 deletions

36
Cargo.lock generated
View File

@ -2666,7 +2666,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
[[package]]
name = "typst"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"arrayvec",
"az",
@ -2734,12 +2734,12 @@ dependencies = [
[[package]]
name = "typst-assets"
version = "0.11.0"
source = "git+https://github.com/typst/typst-assets?rev=4afd428#4afd428838a8fc99151c00dcf52f26b94c367aa0"
version = "0.12.0"
source = "git+https://github.com/typst/typst-assets?rev=5c0dcc0#5c0dcc062eddd9c1b1a8994fe4948ab604a1690f"
[[package]]
name = "typst-cli"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"chrono",
"clap",
@ -2783,12 +2783,12 @@ dependencies = [
[[package]]
name = "typst-dev-assets"
version = "0.11.0"
source = "git+https://github.com/typst/typst-dev-assets?rev=e9f8127#e9f81271547c0d7003770b4fa1e59343e51f7ae8"
version = "0.12.0"
source = "git+https://github.com/typst/typst-dev-assets?rev=b07d156#b07d1560143d6883887358d30edb25cb12fcf5b9"
[[package]]
name = "typst-docs"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"clap",
"comemo",
@ -2811,7 +2811,7 @@ dependencies = [
[[package]]
name = "typst-fuzz"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"comemo",
"libfuzzer-sys",
@ -2823,7 +2823,7 @@ dependencies = [
[[package]]
name = "typst-ide"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"comemo",
"ecow",
@ -2839,7 +2839,7 @@ dependencies = [
[[package]]
name = "typst-kit"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"dirs",
"ecow",
@ -2859,7 +2859,7 @@ dependencies = [
[[package]]
name = "typst-macros"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"heck",
"proc-macro2",
@ -2869,7 +2869,7 @@ dependencies = [
[[package]]
name = "typst-pdf"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"arrayvec",
"base64",
@ -2895,7 +2895,7 @@ dependencies = [
[[package]]
name = "typst-render"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"bytemuck",
"comemo",
@ -2913,7 +2913,7 @@ dependencies = [
[[package]]
name = "typst-svg"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"base64",
"comemo",
@ -2929,7 +2929,7 @@ dependencies = [
[[package]]
name = "typst-syntax"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"ecow",
"once_cell",
@ -2945,7 +2945,7 @@ dependencies = [
[[package]]
name = "typst-tests"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"clap",
"comemo",
@ -2969,7 +2969,7 @@ dependencies = [
[[package]]
name = "typst-timing"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"parking_lot",
"serde",
@ -2979,7 +2979,7 @@ dependencies = [
[[package]]
name = "typst-utils"
version = "0.11.0"
version = "0.12.0"
dependencies = [
"once_cell",
"portable-atomic",

View File

@ -4,7 +4,7 @@ default-members = ["crates/typst-cli"]
resolver = "2"
[workspace.package]
version = "0.11.0"
version = "0.12.0"
rust-version = "1.77" # also change in ci.yml
authors = ["The Typst Project Developers"]
edition = "2021"
@ -16,19 +16,19 @@ keywords = ["typst"]
readme = "README.md"
[workspace.dependencies]
typst = { path = "crates/typst", version = "0.11.0" }
typst-cli = { path = "crates/typst-cli", version = "0.11.0" }
typst-ide = { path = "crates/typst-ide", version = "0.11.0" }
typst-kit = { path = "crates/typst-kit", version = "0.11.0" }
typst-macros = { path = "crates/typst-macros", version = "0.11.0" }
typst-pdf = { path = "crates/typst-pdf", version = "0.11.0" }
typst-render = { path = "crates/typst-render", version = "0.11.0" }
typst-svg = { path = "crates/typst-svg", version = "0.11.0" }
typst-syntax = { path = "crates/typst-syntax", version = "0.11.0" }
typst-timing = { path = "crates/typst-timing", version = "0.11.0" }
typst-utils = { path = "crates/typst-utils", version = "0.11.0" }
typst-assets = { git = "https://github.com/typst/typst-assets", rev = "4afd428" }
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 = { git = "https://github.com/typst/typst-assets", rev = "5c0dcc0" }
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "b07d156" }
arrayvec = "0.7.4"
az = "1.2"
base64 = "0.22"

View File

@ -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" />

View File

@ -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)

View File

@ -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")),