Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
laurmaedje committed Apr 11, 2023
1 parent 2cfbf3e commit fe2640c
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 24 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion Cargo.toml
@@ -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"]
Expand Down
18 changes: 11 additions & 7 deletions cli/Cargo.toml
@@ -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"
Expand Down Expand Up @@ -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 = []
2 changes: 1 addition & 1 deletion docs/Cargo.toml
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions docs/src/general/changelog.md
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -30,22 +30,22 @@ 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)
- Added `sinc` [operator]($func/op)
- 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
Expand Down
7 changes: 6 additions & 1 deletion library/Cargo.toml
@@ -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
Expand Down
7 changes: 6 additions & 1 deletion macros/Cargo.toml
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tests/Cargo.toml
@@ -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
Expand Down

0 comments on commit fe2640c

Please sign in to comment.