Skip to content

Commit

Permalink
Bump to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
quachpas committed Oct 6, 2024
1 parent 26975db commit 236fe2e
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Glossarium is a simple, easily customizable typst glossary inspired by [LaTeX gl
## Fast start

```typ
#import "@preview/glossarium:0.4.0": make-glossary, register-glossary, print-glossary, gls, glspl
#import "@preview/glossarium:0.4.2": make-glossary, register-glossary, print-glossary, gls, glspl
#show: make-glossary
#let entry-list = (
(
Expand Down Expand Up @@ -40,7 +40,7 @@ This manual assume you have a good enough understanding of typst markup and scri
For Typst 0.6.0 or later import the package from the typst preview repository:

```typ
#import "@preview/glossarium:0.4.0": make-glossary, register-glossary, print-glossary, gls, glspl
#import "@preview/glossarium:0.4.2": make-glossary, register-glossary, print-glossary, gls, glspl
```

For Typst before 0.6.0 or to use **glossarium** as a local module, download the package files into your project folder and import `glossarium.typ`:
Expand Down
Binary file modified examples/full-example/main.pdf
Binary file not shown.
Binary file modified examples/groups/groups.pdf
Binary file not shown.
Binary file modified examples/import-terms-from-yaml-file/main.pdf
Binary file not shown.
Binary file modified examples/plural-example/main.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version := "0.4.0"
version := "0.4.2"
commit_hash := `git rev-parse --short HEAD`
benchmark_file := "tests/benchmark-" + commit_hash + ".md"
benchmark_commands := `find examples/**/*.typ -type f | xargs -I {} printf "'typst compile --root . {}' "`
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/ENIB-Community/glossarium/"

[version]
current = "0.4.0"
current = "0.4.2"

# Example of a semver regexp.
# Make sure this matches current_version before
Expand Down
2 changes: 1 addition & 1 deletion themes/default.typ
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#let __glossary_entries = state("__glossary_entries", (:))

// glossarium version
#let glossarium_version = "0.4.0"
#let glossarium_version = "0.4.2"

// error prefix
#let __glossarium_error_prefix = "glossarium@" + glossarium_version + " error : "
Expand Down
2 changes: 1 addition & 1 deletion typst.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "glossarium"
version = "0.4.0"
version = "0.4.2"
entrypoint = "glossarium.typ"
authors = ["slashformotion", "Dherse"]
license = "MIT"
Expand Down

0 comments on commit 236fe2e

Please sign in to comment.