Skip to content

Commit fe2640c

Browse files
committed
Version bump
1 parent 2cfbf3e commit fe2640c

File tree

8 files changed

+45
-24
lines changed

8 files changed

+45
-24
lines changed

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
11
[package]
22
name = "typst"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Typst Project Developers"]
55
edition = "2021"
6+
description = "A new markup-based typesetting system that is powerful and easy to learn."
7+
homepage = "https://typst.app"
8+
repository = "https://github.com/typst/typst"
9+
readme = "README.md"
10+
license = "Apache-2.0"
11+
categories = ["compilers", "science"]
12+
keywords = ["markup", "typesetting"]
613

714
[workspace]
815
members = ["cli", "docs", "library", "macros", "tests"]

cli/Cargo.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
[package]
22
name = "typst-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Typst Project Developers"]
55
edition = "2021"
6+
description = "The command line interface for Typst."
7+
homepage = "https://typst.app"
8+
repository = "https://github.com/typst/typst"
9+
license = "Apache-2.0"
10+
categories = ["compilers", "command-line-utilities"]
11+
keywords = ["typst", "cli"]
612

713
[[bin]]
814
name = "typst"
@@ -37,10 +43,8 @@ clap_mangen = "0.2.10"
3743
[features]
3844
default = ["embed-fonts"]
3945

40-
# Embeds Typst's default fonts for
41-
# - text (Linux Libertine),
42-
# - math (New Computer Modern Math), and
43-
# - code (Deja Vu Sans Mono)
44-
# and additionally New Computer Modern for text
45-
# into the binary.
46+
# Embeds some fonts into the binary:
47+
# - For text: Linux Libertine, New Computer Modern
48+
# - For math: New Computer Modern Math
49+
# - For code: Deja Vu Sans Mono
4650
embed-fonts = []

docs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typst-docs"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Typst Project Developers"]
55
edition = "2021"
66
publish = false

docs/src/general/changelog.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ description: |
55
---
66

77
# Changelog
8-
## Unreleased
8+
## April 11, 2023 (v0.2.0)
99
- **Breaking changes:**
1010
- Removed support for iterating over index and value in
1111
[for loops]($scripting/#loops). This is now handled via unpacking and
1212
enumerating. Same goes for the [`map()`]($type/array.map) method.
1313
- [Dictionaries]($type/dictionary) now iterate in insertion order instead of
14-
alphabetical order
14+
alphabetical order.
1515

1616
- New features
1717
- Added [unpacking syntax]($scripting/#bindings) for let bindings, which
@@ -20,7 +20,7 @@ description: |
2020
- Added [`path`]($func/path) function for drawing Bézier paths
2121
- Added [`layout`]($func/layout) function to access the size of the
2222
surrounding page or container
23-
- Added [`key`] parameter to [`sort()`]($type/array.sort) method
23+
- Added `key` parameter to [`sorted()`]($type/array.sorted) method
2424

2525
- Command line interface
2626
- Fixed `--open` flag blocking the program
@@ -30,22 +30,22 @@ description: |
3030
Typst
3131

3232
- Miscellaneous improvements
33+
- Fixed page numbering in outline
3334
- Added basic i18n for a few more languages
3435
(AR, NB, CS, NN, PL, SL, ES, UA, VI)
3536
- Added a few numbering patterns (Ihora, Chinese)
3637
- Added `sinc` [operator]($func/op)
3738
- Fixed bug where math could not be hidden with [`hide`]($func/hide)
3839
- Fixed sizing issues with box, block, and shapes
3940
- Fixed some translations
40-
- Fixed inversion of [`cal`]($func/cal) and [`frak`]($func/frak) R
41-
- Fixed page numbering in outline
41+
- Fixed inversion of "R" in [`cal`]($func/cal) and [`frak`]($func/frak) styles
4242
- Fixed some styling issues in math
4343
- Fixed supplements of references to headings
4444
- Fixed syntax highlighting of identifiers in certain scenarios
4545
- [Ratios]($type/ratio) can now be multiplied with more types and be converted
4646
to [floats]($type/float) with the [`float`]($func/float) function
4747

48-
## April 04, 2023 (v0.1)
48+
## April 04, 2023 (v0.1.0)
4949
- **Breaking changes:**
5050
- When using the CLI, you now have to use subcommands:
5151
- `typst compile file.typ` or `typst c file.typ` to create a PDF

library/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
[package]
22
name = "typst-library"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Typst Project Developers"]
55
edition = "2021"
6+
description = "The standard library for Typst."
7+
homepage = "https://typst.app"
8+
repository = "https://github.com/typst/typst"
9+
license = "Apache-2.0"
10+
keywords = ["typst"]
611

712
[lib]
813
test = false

macros/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
11
[package]
22
name = "typst-macros"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Typst Project Developers"]
55
edition = "2021"
6+
description = "Proc-macros for Typst."
7+
homepage = "https://typst.app"
8+
repository = "https://github.com/typst/typst"
9+
license = "Apache-2.0"
10+
keywords = ["typst"]
611

712
[lib]
813
proc-macro = true

tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typst-tests"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Typst Project Developers"]
55
edition = "2021"
66
publish = false

0 commit comments

Comments
 (0)