Skip to content

Commit 6361c39

Browse files
committed
Bump to 0.5.5
1 parent 5afaf58 commit 6361c39

10 files changed

Lines changed: 11 additions & 11 deletions

File tree

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.4": make-glossary, register-glossary, print-glossary, gls, glspl
16+
#import "@preview/glossarium:0.5.5": make-glossary, register-glossary, print-glossary, gls, glspl
1717
#show: make-glossary
1818
#let entry-list = (
1919
(
@@ -48,7 +48,7 @@ and [many](https://typst.app/universe/search?q=acro) [others](https://typst.app/
4848
Import the package from the typst preview repository:
4949

5050
```typ
51-
#import "@preview/glossarium:0.5.4": make-glossary, register-glossary, print-glossary, gls, glspl
51+
#import "@preview/glossarium:0.5.5": make-glossary, register-glossary, print-glossary, gls, glspl
5252
```
5353

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

6767
## Making the glossary

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.4": 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.5": 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.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.4": make-glossary, register-glossary, print-glossary, gls, glspl
4+
// #import "@preview/glossarium:0.5.5": make-glossary, register-glossary, print-glossary, gls, glspl
55
#show: make-glossary
66
#let entry-list = (
77
(

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.4": *
6+
// #import "@preview/glossarium:0.5.5": *
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.4": make-glossary, register-glossary, print-glossary, gls, glspl
4+
// #import "@preview/glossarium:0.5.5": 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.4"
1+
version := "0.5.5"
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 . {}' "`

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/typst-community/glossarium/"
22

33
[version]
4-
current = "0.5.4"
4+
current = "0.5.5"
55

66
# Example of a semver regexp.
77
# Make sure this matches current_version before

themes/default.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828

2929
// glossarium version
30-
#let glossarium_version = "0.5.4"
30+
#let glossarium_version = "0.5.5"
3131

3232
// error prefix
3333
#let __glossarium_error_prefix = (

typst.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "glossarium"
3-
version = "0.5.4"
3+
version = "0.5.5"
44
entrypoint = "glossarium.typ"
55
authors = [
66
"Théophile Ross <@slashformotion>",

0 commit comments

Comments
 (0)