diff --git a/CHANGELOG/CHANGELOG-0.1.md b/CHANGELOG/CHANGELOG-0.1.md index 9f4a9e6..738d537 100644 --- a/CHANGELOG/CHANGELOG-0.1.md +++ b/CHANGELOG/CHANGELOG-0.1.md @@ -1,3 +1,14 @@ +# v0.1.3 + +## Changelog since v0.1.3 + +**Full Changelog**: https://github.com/Myriad-Dreamin/typst-book/compare/v0.1.2...v0.1.3 + +Most efforts are internal improvements and there is no external changes since v0.1.2. + +- Implemented new text selection, which already works great on simple pages. +- Improved performance on large pages. Note: you may still get bad performance if you set `#set page(height: auto)`, which will get improved in the future. + # v0.1.2 ## Changelog since v0.1.2 diff --git a/Cargo.lock b/Cargo.lock index 040be49..3d70525 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3591,14 +3591,14 @@ checksum = "f13f85360328da54847dd7fefaf272dfa5b6d1fdeb53f32938924c39bf5b2c6c" [[package]] name = "typst-book-build" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", ] [[package]] name = "typst-book-cli" -version = "0.1.2" +version = "0.1.3" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 7a85374..60ec677 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [workspace.package] description = "A simple tool for creating modern online books in pure typst." authors = ["typst-book Developers"] -version = "0.1.2" +version = "0.1.3" edition = "2021" readme = "README.md" license = "Apache-2.0" diff --git a/frontend/package.json b/frontend/package.json index 0b7024e..98b2188 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "typst-book", - "version": "0.1.2", + "version": "0.1.3", "description": "Typst Book.", "main": "dist/main.js", "repository": "https://github.com/Myriad-Dreamin/typst-book",