diff --git a/README.md b/README.md index f0e49d3..ad10778 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Mantys (v0.0.3) +# Mantys (v0.1.0) > **MAN**uals for **TY**p**S**t @@ -8,18 +8,18 @@ Template for documenting [typst](https://github.com/typst/typst) packages and te Mantys supports **Typst 0.8.0** and newer. -Download the [latest version](https://github.com/jneug/typst-mantys/releases/tag/v0.0.3) and unpack it into the [system dependent local package repository](https://github.com/typst/packages#local-packages). +Download the [latest version](https://github.com/jneug/typst-mantys/releases/tag/v0.1.0) and unpack it into the [system dependent local package repository](https://github.com/typst/packages#local-packages). In your local repository type: ```shell -wget https://github.com/jneug/typst-mantys/archive/refs/tags/v0.0.3.tar.gz -mkdir mantys-0.0.3 -tar -xzf v0.0.3.tar.gz -C mantys-0.0.3 +wget https://github.com/jneug/typst-mantys/archive/refs/tags/v0.1.0.tar.gz +mkdir mantys-0.1.0 +tar -xzf v0.1.0.tar.gz -C mantys-0.1.0 ``` Now import the package at the beginning of your manual document: ```typst -#import "@local/mantys:0.0.3": * +#import "@local/mantys:0.1.0": * ``` To use **Mantys** as a local module for one project only, download the package and unpack into a folder inside your project (e.g. `/mantys`). Then import `mantys/mantys.typ`: @@ -41,7 +41,7 @@ Mantys depends on some other packages. All are available from the Typst package A basic template for a manual could look like this: ```typst -#import "@local/mantys:0.0.3": * +#import "@local/mantys:0.1.0": * #show: mantys.with( name: "your-package-name", diff --git a/docs/mantys-manual.pdf b/docs/mantys-manual.pdf index 2b73d0f..9de8519 100644 Binary files a/docs/mantys-manual.pdf and b/docs/mantys-manual.pdf differ diff --git a/docs/mantys-manual.typ b/docs/mantys-manual.typ index 3c69d1d..6fc21f8 100644 --- a/docs/mantys-manual.typ +++ b/docs/mantys-manual.typ @@ -91,12 +91,12 @@ The best way to use MANTYS is to install the package into the system dependent l Either download the current release from GitHub#footnote[#link("https://github.com/jneug/typst-typopts/releases/latest")] and unpack the archive into the correct versioned subfolder or clone it directly via `git`: #codesnippet[```shell-unix-generic -git clone https://github.com/jneug/typst-mantys.git mantys/0.0.3 +git clone https://github.com/jneug/typst-mantys.git mantys/0.1.0 ```] After installing the package just import it inside your `typ` file: #codesnippet[```typ -#import "@local/mantys:0.0.3": * +#import "@local/mantys:0.1.0": * ```] === Initializing the template diff --git a/tbump.toml b/tbump.toml index 037c55c..cbb243d 100644 --- a/tbump.toml +++ b/tbump.toml @@ -2,7 +2,7 @@ github_url = "https://github.com/jneug/typst-mantys/" [version] -current = "0.0.3" +current = "0.1.0" # Example of a semver regexp. # Make sure this matches current_version before diff --git a/typst.toml b/typst.toml index 41d055c..db663a1 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "mantys" -version = "0.0.3" +version = "0.1.0" entrypoint = "src/mantys.typ" authors = ["J. Neugebauer"] license = "MIT"