Release Candidate

This commit is contained in:
Laurenz 2024-03-09 17:57:14 +01:00
parent a2d097686f
commit fe94bd85ae
3 changed files with 29 additions and 26 deletions

29
Cargo.lock generated
View File

@ -2531,7 +2531,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
[[package]] [[package]]
name = "typst" name = "typst"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"az", "az",
"bitflags 2.4.2", "bitflags 2.4.2",
@ -2592,12 +2592,13 @@ dependencies = [
[[package]] [[package]]
name = "typst-assets" name = "typst-assets"
version = "0.10.0" version = "0.11.0-rc1"
source = "git+https://github.com/typst/typst-assets?rev=4d1211a#4d1211ab5ba8a02992a7362000e6dd422d44dd68" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e43b98ec1d7969c329e3735e597bbe5e69076445a570f9634b30c8dc01c704ae"
[[package]] [[package]]
name = "typst-cli" name = "typst-cli"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",
@ -2649,7 +2650,7 @@ source = "git+https://github.com/typst/typst-dev-assets?rev=c63ab46#c63ab467b6d2
[[package]] [[package]]
name = "typst-docs" name = "typst-docs"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"clap", "clap",
"comemo", "comemo",
@ -2672,7 +2673,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-fuzz" name = "typst-fuzz"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"comemo", "comemo",
"libfuzzer-sys", "libfuzzer-sys",
@ -2684,7 +2685,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-ide" name = "typst-ide"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"comemo", "comemo",
"ecow", "ecow",
@ -2697,7 +2698,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-macros" name = "typst-macros"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"heck", "heck",
"proc-macro2", "proc-macro2",
@ -2707,7 +2708,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-pdf" name = "typst-pdf"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"base64 0.22.0", "base64 0.22.0",
"bytemuck", "bytemuck",
@ -2731,7 +2732,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-render" name = "typst-render"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"comemo", "comemo",
@ -2750,7 +2751,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-svg" name = "typst-svg"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"base64 0.22.0", "base64 0.22.0",
"comemo", "comemo",
@ -2766,7 +2767,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-syntax" name = "typst-syntax"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"comemo", "comemo",
"ecow", "ecow",
@ -2781,7 +2782,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-tests" name = "typst-tests"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"clap", "clap",
"comemo", "comemo",
@ -2804,7 +2805,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-timing" name = "typst-timing"
version = "0.10.0" version = "0.11.0-rc1"
dependencies = [ dependencies = [
"parking_lot", "parking_lot",
"serde", "serde",

View File

@ -4,7 +4,7 @@ default-members = ["crates/typst-cli"]
resolver = "2" resolver = "2"
[workspace.package] [workspace.package]
version = "0.10.0" version = "0.11.0-rc1"
rust-version = "1.74" # also change in ci.yml rust-version = "1.74" # also change in ci.yml
authors = ["The Typst Project Developers"] authors = ["The Typst Project Developers"]
edition = "2021" edition = "2021"
@ -16,16 +16,16 @@ categories = ["compilers"]
keywords = ["typst"] keywords = ["typst"]
[workspace.dependencies] [workspace.dependencies]
typst = { path = "crates/typst" } typst = { path = "crates/typst", version = "0.11.0-rc1" }
typst-cli = { path = "crates/typst-cli" } typst-cli = { path = "crates/typst-cli", version = "0.11.0-rc1" }
typst-ide = { path = "crates/typst-ide" } typst-ide = { path = "crates/typst-ide", version = "0.11.0-rc1" }
typst-macros = { path = "crates/typst-macros" } typst-macros = { path = "crates/typst-macros", version = "0.11.0-rc1" }
typst-pdf = { path = "crates/typst-pdf" } typst-pdf = { path = "crates/typst-pdf", version = "0.11.0-rc1" }
typst-render = { path = "crates/typst-render" } typst-render = { path = "crates/typst-render", version = "0.11.0-rc1" }
typst-svg = { path = "crates/typst-svg" } typst-svg = { path = "crates/typst-svg", version = "0.11.0-rc1" }
typst-syntax = { path = "crates/typst-syntax" } typst-syntax = { path = "crates/typst-syntax", version = "0.11.0-rc1" }
typst-timing = { path = "crates/typst-timing" } typst-timing = { path = "crates/typst-timing", version = "0.11.0-rc1" }
typst-assets = { git = "https://github.com/typst/typst-assets", rev = "4d1211a" } typst-assets = "0.11.0-rc1"
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "c63ab46" } typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "c63ab46" }
az = "1.2" az = "1.2"
base64 = "0.22" base64 = "0.22"

View File

@ -5,7 +5,7 @@ description: |
--- ---
# Changelog # Changelog
## Unreleased ## Version 0.11.0, Release Candidate 1 (March 9, 2024) { #v0.11.0-rc1 }
- Tables (thanks to [@PgBiel](https://github.com/PgBiel)) - Tables (thanks to [@PgBiel](https://github.com/PgBiel))
- Tables are now _much_ more flexible - Tables are now _much_ more flexible
- Added [`table.cell`] element for per-cell configuration - Added [`table.cell`] element for per-cell configuration
@ -265,6 +265,8 @@ description: |
to `Smart`. It should only be set to `Smart::Custom` if you can provide to `Smart`. It should only be set to `Smart::Custom` if you can provide
a stable identifier (like the web app can). The CLI sets `Smart::Auto`. a stable identifier (like the web app can). The CLI sets `Smart::Auto`.
<contributors from="v0.10.0" to="v0.11.0-rc1" />
## Version 0.10.0 (December 4, 2023) { #v0.10.0 } ## Version 0.10.0 (December 4, 2023) { #v0.10.0 }
- Bibliography management - Bibliography management
- Added support for citation collapsing (e.g. `[[1]-[3]]` instead of - Added support for citation collapsing (e.g. `[[1]-[3]]` instead of