diff --git a/CHANGELOG.md b/CHANGELOG.md index 5c926fd..357cdf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.9.0 +- Upgrade to Typst 0.10.0 +- Remove SVGO dependency +- SVG output now scales with the line size [#39](https://github.com/fenjalien/obsidian-typst/issues/39) + + # 0.8.0 - Upgrade to Typst 0.9.0 - Fix slow loading times [#34](https://github.com/fenjalien/obsidian-typst/issues/34) diff --git a/README.md b/README.md index 87450da..1d011f0 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,7 @@ Renders `typst` code blocks, and optionally math blocks, into images using [Typs | Plugin | Typst | |-|-| +| 0.9 | 0.10.0 | | 0.8 | 0.9.0 | | 0.7 | 0.8.0 | | 0.6 | [522708b](https://github.com/typst/typst/commit/522708b9df0b9b2f8265938aa1f0aeda8e6e6c1f) (Some commits after 0.7.0 to include SVG export) | diff --git a/compiler/Cargo.lock b/compiler/Cargo.lock index 01106eb..2b96c85 100644 --- a/compiler/Cargo.lock +++ b/compiler/Cargo.lock @@ -936,7 +936,7 @@ checksum = "e25be21376a772d15f97ae789845340a9651d3c4246ff5ebb6a2b35f9c37bd31" [[package]] name = "obsidian-typst" -version = "0.8.0" +version = "0.9.0" dependencies = [ "ariadne", "chrono", diff --git a/compiler/Cargo.toml b/compiler/Cargo.toml index 0f859ad..96945d8 100644 --- a/compiler/Cargo.toml +++ b/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obsidian-typst" -version = "0.8.0" +version = "0.9.0" authors = ["fenjalien"] edition = "2021" description = "Renders `typst` code blocks to images with Typst." diff --git a/manifest.json b/manifest.json index c05edfd..b5de6e0 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "typst", "name": "Typst Renderer", - "version": "0.8.0", + "version": "0.9.0", "minAppVersion": "1.0.0", "description": "Renders `typst` code blocks and math blocks with Typst.", "author": "fenjalien", diff --git a/package-lock.json b/package-lock.json index d00b81c..923909b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "obsidian-typst-plugin", - "version": "0.8alpha", + "version": "0.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "obsidian-typst-plugin", - "version": "0.8alpha", + "version": "0.9.0", "license": "Apache-2.0", "dependencies": { "fflate": "^0.8.1", @@ -2514,7 +2514,7 @@ }, "pkg": { "name": "obsidian-typst", - "version": "0.7.1" + "version": "0.8.0" }, "pkg/pkg": { "extraneous": true diff --git a/package.json b/package.json index aedbc30..8a78e61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-typst-plugin", - "version": "0.8.0", + "version": "0.9.0", "description": "Renders `typst` code blocks to images with Typst.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index d8989c7..2c59f97 100644 --- a/versions.json +++ b/versions.json @@ -1,5 +1,5 @@ { - "0.8.0": "1.0.0", + "0.9.0": "1.0.0", "0.7.1": "1.0.0", "0.7.0": "1.0.0", "0.6.0": "1.0.0",