Version bump
This commit is contained in:
parent
2cfbf3e823
commit
fe2640c552
12
Cargo.lock
generated
12
Cargo.lock
generated
@ -1597,7 +1597,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
||||
|
||||
[[package]]
|
||||
name = "typst"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"bytemuck",
|
||||
@ -1634,7 +1634,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-cli"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clap",
|
||||
@ -1657,7 +1657,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-docs"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"comemo",
|
||||
"heck",
|
||||
@ -1675,7 +1675,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-library"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"chinese-number",
|
||||
"comemo",
|
||||
@ -1705,7 +1705,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-macros"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"heck",
|
||||
"proc-macro2",
|
||||
@ -1716,7 +1716,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "typst-tests"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
dependencies = [
|
||||
"comemo",
|
||||
"elsa",
|
||||
|
@ -1,8 +1,15 @@
|
||||
[package]
|
||||
name = "typst"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
description = "A new markup-based typesetting system that is powerful and easy to learn."
|
||||
homepage = "https://typst.app"
|
||||
repository = "https://github.com/typst/typst"
|
||||
readme = "README.md"
|
||||
license = "Apache-2.0"
|
||||
categories = ["compilers", "science"]
|
||||
keywords = ["markup", "typesetting"]
|
||||
|
||||
[workspace]
|
||||
members = ["cli", "docs", "library", "macros", "tests"]
|
||||
|
@ -1,8 +1,14 @@
|
||||
[package]
|
||||
name = "typst-cli"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
description = "The command line interface for Typst."
|
||||
homepage = "https://typst.app"
|
||||
repository = "https://github.com/typst/typst"
|
||||
license = "Apache-2.0"
|
||||
categories = ["compilers", "command-line-utilities"]
|
||||
keywords = ["typst", "cli"]
|
||||
|
||||
[[bin]]
|
||||
name = "typst"
|
||||
@ -37,10 +43,8 @@ clap_mangen = "0.2.10"
|
||||
[features]
|
||||
default = ["embed-fonts"]
|
||||
|
||||
# Embeds Typst's default fonts for
|
||||
# - text (Linux Libertine),
|
||||
# - math (New Computer Modern Math), and
|
||||
# - code (Deja Vu Sans Mono)
|
||||
# and additionally New Computer Modern for text
|
||||
# into the binary.
|
||||
# Embeds some fonts into the binary:
|
||||
# - For text: Linux Libertine, New Computer Modern
|
||||
# - For math: New Computer Modern Math
|
||||
# - For code: Deja Vu Sans Mono
|
||||
embed-fonts = []
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "typst-docs"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
@ -5,13 +5,13 @@ description: |
|
||||
---
|
||||
|
||||
# Changelog
|
||||
## Unreleased
|
||||
## April 11, 2023 (v0.2.0)
|
||||
- **Breaking changes:**
|
||||
- Removed support for iterating over index and value in
|
||||
[for loops]($scripting/#loops). This is now handled via unpacking and
|
||||
enumerating. Same goes for the [`map()`]($type/array.map) method.
|
||||
- [Dictionaries]($type/dictionary) now iterate in insertion order instead of
|
||||
alphabetical order
|
||||
alphabetical order.
|
||||
|
||||
- New features
|
||||
- Added [unpacking syntax]($scripting/#bindings) for let bindings, which
|
||||
@ -20,7 +20,7 @@ description: |
|
||||
- Added [`path`]($func/path) function for drawing Bézier paths
|
||||
- Added [`layout`]($func/layout) function to access the size of the
|
||||
surrounding page or container
|
||||
- Added [`key`] parameter to [`sort()`]($type/array.sort) method
|
||||
- Added `key` parameter to [`sorted()`]($type/array.sorted) method
|
||||
|
||||
- Command line interface
|
||||
- Fixed `--open` flag blocking the program
|
||||
@ -30,6 +30,7 @@ description: |
|
||||
Typst
|
||||
|
||||
- Miscellaneous improvements
|
||||
- Fixed page numbering in outline
|
||||
- Added basic i18n for a few more languages
|
||||
(AR, NB, CS, NN, PL, SL, ES, UA, VI)
|
||||
- Added a few numbering patterns (Ihora, Chinese)
|
||||
@ -37,15 +38,14 @@ description: |
|
||||
- Fixed bug where math could not be hidden with [`hide`]($func/hide)
|
||||
- Fixed sizing issues with box, block, and shapes
|
||||
- Fixed some translations
|
||||
- Fixed inversion of [`cal`]($func/cal) and [`frak`]($func/frak) R
|
||||
- Fixed page numbering in outline
|
||||
- Fixed inversion of "R" in [`cal`]($func/cal) and [`frak`]($func/frak) styles
|
||||
- Fixed some styling issues in math
|
||||
- Fixed supplements of references to headings
|
||||
- Fixed syntax highlighting of identifiers in certain scenarios
|
||||
- [Ratios]($type/ratio) can now be multiplied with more types and be converted
|
||||
to [floats]($type/float) with the [`float`]($func/float) function
|
||||
|
||||
## April 04, 2023 (v0.1)
|
||||
## April 04, 2023 (v0.1.0)
|
||||
- **Breaking changes:**
|
||||
- When using the CLI, you now have to use subcommands:
|
||||
- `typst compile file.typ` or `typst c file.typ` to create a PDF
|
||||
|
@ -1,8 +1,13 @@
|
||||
[package]
|
||||
name = "typst-library"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
description = "The standard library for Typst."
|
||||
homepage = "https://typst.app"
|
||||
repository = "https://github.com/typst/typst"
|
||||
license = "Apache-2.0"
|
||||
keywords = ["typst"]
|
||||
|
||||
[lib]
|
||||
test = false
|
||||
|
@ -1,8 +1,13 @@
|
||||
[package]
|
||||
name = "typst-macros"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
description = "Proc-macros for Typst."
|
||||
homepage = "https://typst.app"
|
||||
repository = "https://github.com/typst/typst"
|
||||
license = "Apache-2.0"
|
||||
keywords = ["typst"]
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "typst-tests"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
authors = ["The Typst Project Developers"]
|
||||
edition = "2021"
|
||||
publish = false
|
||||
|
Loading…
x
Reference in New Issue
Block a user