Skip to content

Commit

Permalink
Version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ssotoen committed Oct 19, 2024
1 parent d052b5b commit 6199b8a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
## Migration Guide from v0.1.X -->

## v0.2.0 (2024-10-19)

- Added support Typst 0.12’s new `par.spacing` property
- Replaced a deprecated `location` call with the new `context`

## v0.1.0 (2024-08-06)

Initial Release
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# The `gridlock` Package (v0.1.0)
# The `gridlock` Package (v0.2.0)

Grid typesetting in Typst.
Use this package if you want to line up your body text across columns and pages.
Expand All @@ -10,7 +10,7 @@ Use this package if you want to line up your body text across columns and pages.
## Getting Started

```typ
#import "@preview/gridlock:0.1.0": *
#import "@preview/gridlock:0.2.0": *
#show: gridlock.with()
Expand All @@ -34,7 +34,7 @@ Check out [the manual](docs/gridlock-manual.pdf) for a detailed description.
To get started, import the package into your document:

```typ
#import "@preview/gridlock:0.1.0": *
#import "@preview/gridlock:0.2.0": *
```

Set up the basic parameters:
Expand Down
Binary file modified docs/gridlock-manual.pdf
Binary file not shown.
6 changes: 2 additions & 4 deletions docs/gridlock-manual.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// typst c docs/gridlock-manual.typ --font-path docs/fonts --root ../
// typst c docs/gridlock-manual.typ --font-path docs/fonts --root ../ --pdf-standard a-2b

#let typst-toml = toml("../typst.toml")
#let project-version = typst-toml.package.version
Expand All @@ -22,9 +22,7 @@

#set text(
font: "Reforma 1918",
stylistic-set: 4
// TODO: Typst 0.12
// stylistic-set: (4, 5) // long-tail Q in roman (4) and italic (5)
stylistic-set: (4, 5), // long-tail Q in roman (4) and italic (5)
)

#show math.equation: set text(stylistic-set: none)
Expand Down
2 changes: 1 addition & 1 deletion typst.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "gridlock"
version = "0.1.0"
version = "0.2.0"
entrypoint = "src/lib.typ"
authors = ["ssotoen"]
license = "Unlicense"
Expand Down

0 comments on commit 6199b8a

Please sign in to comment.