Version bump
This commit is contained in:
parent
59d545d908
commit
5011510270
32
Cargo.lock
generated
32
Cargo.lock
generated
@ -2516,7 +2516,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
||||
|
||||
[[package]]
|
||||
name = "typst"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"az",
|
||||
"bitflags 2.4.2",
|
||||
@ -2577,13 +2577,13 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-assets"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "f13f85360328da54847dd7fefaf272dfa5b6d1fdeb53f32938924c39bf5b2c6c"
|
||||
checksum = "2b3061f8d268e8eec7481c9ab24540455cb4912983c49aae38fa6e8bf8ef4d9c"
|
||||
|
||||
[[package]]
|
||||
name = "typst-cli"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clap",
|
||||
@ -2629,12 +2629,12 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-dev-assets"
|
||||
version = "0.11.0"
|
||||
source = "git+https://github.com/typst/typst-dev-assets?rev=ee8ae61cca138dc92f9d818fc7f2fc046d0148c5#ee8ae61cca138dc92f9d818fc7f2fc046d0148c5"
|
||||
version = "0.11.1"
|
||||
source = "git+https://github.com/typst/typst-dev-assets?tag=v0.11.1#35caed3a870d46e827cffaa9dc450e38bede2a37"
|
||||
|
||||
[[package]]
|
||||
name = "typst-docs"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"comemo",
|
||||
@ -2657,7 +2657,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-fuzz"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"comemo",
|
||||
"libfuzzer-sys",
|
||||
@ -2669,7 +2669,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-ide"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"comemo",
|
||||
"ecow",
|
||||
@ -2685,7 +2685,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-macros"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro2",
|
||||
@ -2695,7 +2695,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-pdf"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"base64 0.22.0",
|
||||
"bytemuck",
|
||||
@ -2719,7 +2719,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-render"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"bytemuck",
|
||||
"comemo",
|
||||
@ -2738,7 +2738,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-svg"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"base64 0.22.0",
|
||||
"comemo",
|
||||
@ -2754,7 +2754,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-syntax"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"comemo",
|
||||
"ecow",
|
||||
@ -2769,7 +2769,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-tests"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"comemo",
|
||||
@ -2792,7 +2792,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-timing"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"parking_lot",
|
||||
"serde",
|
||||
|
24
Cargo.toml
24
Cargo.toml
@ -4,7 +4,7 @@ default-members = ["crates/typst-cli"]
|
||||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
rust-version = "1.74" # also change in ci.yml
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
@ -16,17 +16,17 @@ 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-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-assets = "0.11.0"
|
||||
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", rev = "ee8ae61cca138dc92f9d818fc7f2fc046d0148c5" }
|
||||
typst = { path = "crates/typst", version = "0.11.1" }
|
||||
typst-cli = { path = "crates/typst-cli", version = "0.11.1" }
|
||||
typst-ide = { path = "crates/typst-ide", version = "0.11.1" }
|
||||
typst-macros = { path = "crates/typst-macros", version = "0.11.1" }
|
||||
typst-pdf = { path = "crates/typst-pdf", version = "0.11.1" }
|
||||
typst-render = { path = "crates/typst-render", version = "0.11.1" }
|
||||
typst-svg = { path = "crates/typst-svg", version = "0.11.1" }
|
||||
typst-syntax = { path = "crates/typst-syntax", version = "0.11.1" }
|
||||
typst-timing = { path = "crates/typst-timing", version = "0.11.1" }
|
||||
typst-assets = "0.11.1"
|
||||
typst-dev-assets = { git = "https://github.com/typst/typst-dev-assets", tag = "v0.11.1" }
|
||||
az = "1.2"
|
||||
base64 = "0.22"
|
||||
bitflags = { version = "2", features = ["serde"] }
|
||||
|
@ -5,7 +5,7 @@ description: |
|
||||
---
|
||||
|
||||
# Changelog
|
||||
## Unreleased
|
||||
## Version 0.11.1 (May 17, 2024) { #v0.11.1 }
|
||||
- Security
|
||||
- Fixed a vulnerability where image files at known paths could be embedded
|
||||
into the PDF even if they were outside of the project directory
|
||||
@ -59,6 +59,8 @@ description: |
|
||||
properly escaped
|
||||
- Fixed various documentation errors
|
||||
|
||||
<contributors from="v0.11.0" to="v0.11.1" />
|
||||
|
||||
## Version 0.11.0 (March 15, 2024) { #v0.11.0 }
|
||||
- Tables (thanks to [@PgBiel](https://github.com/PgBiel))
|
||||
- Tables are now _much_ more flexible, read the new
|
||||
|
Loading…
Reference in New Issue
Block a user