Skip to content

Commit 1722f98

Browse files
committed
Bump to 0.5.3
1 parent 47adf78 commit 1722f98

File tree

13 files changed

+11
-11
lines changed

13 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ examples showcasing the different features in the `examples` folder.
1313
# Fast start
1414

1515
```typ
16-
#import "@preview/glossarium:0.5.2": make-glossary, register-glossary, print-glossary, gls, glspl
16+
#import "@preview/glossarium:0.5.3": make-glossary, register-glossary, print-glossary, gls, glspl
1717
#show: make-glossary
1818
#let entry-list = (
1919
(
@@ -46,7 +46,7 @@ and [many](https://typst.app/universe/search?q=acro) [others](https://typst.app/
4646
Import the package from the typst preview repository:
4747

4848
```typ
49-
#import "@preview/glossarium:0.5.2": make-glossary, register-glossary, print-glossary, gls, glspl
49+
#import "@preview/glossarium:0.5.3": make-glossary, register-glossary, print-glossary, gls, glspl
5050
```
5151

5252
To use **glossarium** as a vendored module, download the package files into your project folder and import `glossarium.typ`:
@@ -59,7 +59,7 @@ To use **glossarium** locally, create a new package namespace on your system:
5959
- follows the instructions at [typst/packages](https://github.com/typst/packages?tab=readme-ov-file#local-packages)
6060
- import glossarium (if your namespace is named `local`):
6161
```typ
62-
#import "@local/glossarium:0.5.2": make-glossary, register-glossary, print-glossary, gls, glspl
62+
#import "@local/glossarium:0.5.3": make-glossary, register-glossary, print-glossary, gls, glspl
6363
```
6464

6565
## Making the glossary

examples/full-example/main.pdf

0 Bytes
Binary file not shown.

examples/full-example/main.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// @typstyle off
33
#import "../../glossarium.typ": make-glossary, register-glossary, print-glossary, gls, glspl, agls, gls-key, gls-short, gls-artshort, gls-plural, gls-long, gls-artlong, gls-longplural, gls-description, gls-group
4-
// #import "@preview/glossarium:0.5.2": make-glossary, register-glossary, print-glossary, gls, glspl, agls, gls-key, gls-short, gls-artshort, gls-plural, gls-long, gls-artlong, gls-longplural, gls-description, gls-group
4+
// #import "@preview/glossarium:0.5.3": make-glossary, register-glossary, print-glossary, gls, glspl, agls, gls-key, gls-short, gls-artshort, gls-plural, gls-long, gls-artlong, gls-longplural, gls-description, gls-group
55
#show: make-glossary
66
#let entry-list = (
77
(

examples/groups/groups.pdf

0 Bytes
Binary file not shown.

examples/groups/groups.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// @typstyle off
33
#import "../../glossarium.typ": make-glossary, register-glossary, print-glossary, gls, glspl
4-
// #import "@preview/glossarium:0.5.2": make-glossary, register-glossary, print-glossary, gls, glspl
4+
// #import "@preview/glossarium:0.5.3": make-glossary, register-glossary, print-glossary, gls, glspl
55
#show: make-glossary
66
#let entry-list = (
77
(
0 Bytes
Binary file not shown.

examples/import-terms-from-yaml-file/main.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// The glossary command here is modeled after the bibliography command and accepts similar arguments.
44

55
#import "../../glossarium.typ": *
6-
// #import "@preview/glossarium:0.5.2": *
6+
// #import "@preview/glossarium:0.5.3": *
77
#let read-glossary-entries(file) = {
88
let entries = yaml(file)
99

examples/plural-example/main.pdf

0 Bytes
Binary file not shown.

examples/plural-example/main.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// @typstyle off
33
#import "../../glossarium.typ": make-glossary, register-glossary, print-glossary, gls, glspl
4-
// #import "@preview/glossarium:0.5.2": make-glossary, register-glossary, print-glossary, gls, glspl
4+
// #import "@preview/glossarium:0.5.3": make-glossary, register-glossary, print-glossary, gls, glspl
55

66
#show: make-glossary
77
#let entry-list = (

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version := "0.5.2"
1+
version := "0.5.3"
22
commit_hash := `git rev-parse --short HEAD`
33
benchmark_file := "tests/benchmark-" + commit_hash + ".md"
44
benchmark_commands := `find examples/**/*.typ -type f | xargs -I {} printf "'typst compile --root . {}' "`

0 commit comments

Comments
 (0)