Version bump

This commit is contained in:
Laurenz 2024-03-15 15:54:53 +01:00
parent faca50a240
commit 2bf9f95dd8
3 changed files with 32 additions and 29 deletions

33
Cargo.lock generated
View File

@ -2510,7 +2510,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
[[package]] [[package]]
name = "typst" name = "typst"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"az", "az",
"bitflags 2.4.2", "bitflags 2.4.2",
@ -2571,12 +2571,13 @@ dependencies = [
[[package]] [[package]]
name = "typst-assets" name = "typst-assets"
version = "0.10.0" version = "0.11.0"
source = "git+https://github.com/typst/typst-assets?rev=4d1211a#4d1211ab5ba8a02992a7362000e6dd422d44dd68" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f13f85360328da54847dd7fefaf272dfa5b6d1fdeb53f32938924c39bf5b2c6c"
[[package]] [[package]]
name = "typst-cli" name = "typst-cli"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",
@ -2621,12 +2622,12 @@ dependencies = [
[[package]] [[package]]
name = "typst-dev-assets" name = "typst-dev-assets"
version = "0.10.0" version = "0.11.0"
source = "git+https://github.com/typst/typst-dev-assets?rev=2eec695#2eec695af4b8b32c079e549b78c64ef7ff5d5fff" source = "git+https://github.com/typst/typst-dev-assets?tag=v0.11.0#e0ef7ad46f28a440c41bc8e78563ace86cc02678"
[[package]] [[package]]
name = "typst-docs" name = "typst-docs"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"clap", "clap",
"comemo", "comemo",
@ -2649,7 +2650,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-fuzz" name = "typst-fuzz"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"comemo", "comemo",
"libfuzzer-sys", "libfuzzer-sys",
@ -2661,7 +2662,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-ide" name = "typst-ide"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"comemo", "comemo",
"ecow", "ecow",
@ -2674,7 +2675,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-macros" name = "typst-macros"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"heck", "heck",
"proc-macro2", "proc-macro2",
@ -2684,7 +2685,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-pdf" name = "typst-pdf"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"base64 0.22.0", "base64 0.22.0",
"bytemuck", "bytemuck",
@ -2708,7 +2709,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-render" name = "typst-render"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"bytemuck", "bytemuck",
"comemo", "comemo",
@ -2727,7 +2728,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-svg" name = "typst-svg"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"base64 0.22.0", "base64 0.22.0",
"comemo", "comemo",
@ -2743,7 +2744,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-syntax" name = "typst-syntax"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"comemo", "comemo",
"ecow", "ecow",
@ -2758,7 +2759,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-tests" name = "typst-tests"
version = "0.10.0" version = "0.11.0"
dependencies = [ dependencies = [
"clap", "clap",
"comemo", "comemo",
@ -2781,7 +2782,7 @@ dependencies = [
[[package]] [[package]]
name = "typst-timing" name = "typst-timing"
version = "0.10.0" version = "0.11.0"
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"
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,17 +16,17 @@ keywords = ["typst"]
readme = "README.md" readme = "README.md"
[workspace.dependencies] [workspace.dependencies]
typst = { path = "crates/typst" } typst = { path = "crates/typst", version = "0.11.0" }
typst-cli = { path = "crates/typst-cli" } typst-cli = { path = "crates/typst-cli", version = "0.11.0" }
typst-ide = { path = "crates/typst-ide" } typst-ide = { path = "crates/typst-ide", version = "0.11.0" }
typst-macros = { path = "crates/typst-macros" } typst-macros = { path = "crates/typst-macros", version = "0.11.0" }
typst-pdf = { path = "crates/typst-pdf" } typst-pdf = { path = "crates/typst-pdf", version = "0.11.0" }
typst-render = { path = "crates/typst-render" } typst-render = { path = "crates/typst-render", version = "0.11.0" }
typst-svg = { path = "crates/typst-svg" } typst-svg = { path = "crates/typst-svg", version = "0.11.0" }
typst-syntax = { path = "crates/typst-syntax" } typst-syntax = { path = "crates/typst-syntax", version = "0.11.0" }
typst-timing = { path = "crates/typst-timing" } typst-timing = { path = "crates/typst-timing", version = "0.11.0" }
typst-assets = { git = "https://github.com/typst/typst-assets", rev = "4d1211a" } typst-assets = "0.11.0"
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "2eec695" } typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", tag = "v0.11.0" }
az = "1.2" az = "1.2"
base64 = "0.22" base64 = "0.22"
bitflags = { version = "2", features = ["serde"] } bitflags = { version = "2", features = ["serde"] }

View File

@ -5,7 +5,7 @@ description: |
--- ---
# Changelog # Changelog
## Unreleased ## Version 0.11.0 (March 15, 2024) { #v0.11.0 }
- Tables (thanks to [@PgBiel](https://github.com/PgBiel)) - Tables (thanks to [@PgBiel](https://github.com/PgBiel))
- Tables are now _much_ more flexible, read the new - Tables are now _much_ more flexible, read the new
[table guide]($guides/table-guide) to get started [table guide]($guides/table-guide) to get started
@ -271,6 +271,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" />
## 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