diff --git a/README.md b/README.md index bd96d57..f2df882 100644 --- a/README.md +++ b/README.md @@ -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 = ( ( @@ -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`: diff --git a/examples/full-example/main.pdf b/examples/full-example/main.pdf index d08d629..2e1f74c 100644 Binary files a/examples/full-example/main.pdf and b/examples/full-example/main.pdf differ diff --git a/examples/groups/groups.pdf b/examples/groups/groups.pdf index 7b56ca6..ef6b80a 100644 Binary files a/examples/groups/groups.pdf and b/examples/groups/groups.pdf differ diff --git a/examples/import-terms-from-yaml-file/main.pdf b/examples/import-terms-from-yaml-file/main.pdf index 2944988..ab9c852 100644 Binary files a/examples/import-terms-from-yaml-file/main.pdf and b/examples/import-terms-from-yaml-file/main.pdf differ diff --git a/examples/plural-example/main.pdf b/examples/plural-example/main.pdf index 8bb078e..78f9630 100644 Binary files a/examples/plural-example/main.pdf and b/examples/plural-example/main.pdf differ diff --git a/justfile b/justfile index c82b172..c78352d 100644 --- a/justfile +++ b/justfile @@ -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 . {}' "` diff --git a/tbump.toml b/tbump.toml index 873a393..01dc73c 100644 --- a/tbump.toml +++ b/tbump.toml @@ -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 diff --git a/themes/default.typ b/themes/default.typ index 0c1f8cc..b271b2a 100644 --- a/themes/default.typ +++ b/themes/default.typ @@ -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 : " diff --git a/typst.toml b/typst.toml index 07bcd78..b0c49e7 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "glossarium" -version = "0.4.0" +version = "0.4.2" entrypoint = "glossarium.typ" authors = ["slashformotion", "Dherse"] license = "MIT"