Skip to content

Commit

Permalink
Bump to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jneug committed Feb 14, 2024
1 parent 2962888 commit 23bd1cf
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Mantys (v0.0.3)
# Mantys (v0.1.0)

> **MAN**uals for **TY**p**S**t
Expand All @@ -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`:
Expand All @@ -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",
Expand Down
Binary file modified docs/mantys-manual.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/mantys-manual.typ
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
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 = "mantys"
version = "0.0.3"
version = "0.1.0"
entrypoint = "src/mantys.typ"
authors = ["J. Neugebauer"]
license = "MIT"
Expand Down

0 comments on commit 23bd1cf

Please sign in to comment.