Skip to content

Commit 45aff48

Browse files
committed
bump to v1.1.1
1 parent 0a8f830 commit 45aff48

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Elembic is especially suited for:
2626
Just import the latest elembic version from the package manager and you're ready to go!
2727

2828
```typ
29-
#import "@preview/elembic:1.1.0" as e
29+
#import "@preview/elembic:1.1.1" as e
3030
3131
// See the full example below
3232
#show: e.set_(element, stroke: red)
@@ -38,7 +38,7 @@ Just import the latest elembic version from the package manager and you're ready
3838
### Custom element
3939

4040
```typ
41-
#import "@preview/elembic:1.1.0" as e: field, types
41+
#import "@preview/elembic:1.1.1" as e: field, types
4242
4343
#let bigbox = e.element.declare(
4444
"bigbox",
@@ -64,7 +64,7 @@ Just import the latest elembic version from the package manager and you're ready
6464
### Custom type
6565

6666
```typ
67-
#import "@preview/elembic:1.1.0" as e: field, types
67+
#import "@preview/elembic:1.1.1" as e: field, types
6868
6969
#let person = e.types.declare(
7070
"person",

docs/book/src/about/installation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ If you'd like to contribute or try out the latest development version, Elembic m
1818

1919
To install Elembic as a local package in your system, see [https://github.com/typst/packages?tab=readme-ov-file#local-packages](https://github.com/typst/packages?tab=readme-ov-file#local-packages) for instructions.
2020

21-
In particular, it involves downloading Elembic's files from either [GitHub (pgbiel/elembic)](https://github.com/PgBiel/elembic) or [Codeberg (pgbiel/elembic)](https://codeberg.org/PgBiel/elembic) and then copying it to `$LOCAL_PACKAGES_DIR/elembic/1.1.0`.
21+
In particular, it involves downloading Elembic's files from either [GitHub (pgbiel/elembic)](https://github.com/PgBiel/elembic) or [Codeberg (pgbiel/elembic)](https://codeberg.org/PgBiel/elembic) and then copying it to `$LOCAL_PACKAGES_DIR/elembic/1.1.1`.
2222

2323
If you're using a Linux platform, there is the following one-liner command to install the latest development version (note: does not remove a prior installation):
2424

2525
```sh
26-
pkgbase="${XDG_DATA_HOME:-$HOME/.local/share}/typst/packages/local/elembic" && mkdir -p "$pkgbase/1.1.0" && curl -L https://github.com/PgBiel/elembic/archive/main.tar.gz | tar xz --strip-components=1 --directory="$pkgbase/1.1.0"
26+
pkgbase="${XDG_DATA_HOME:-$HOME/.local/share}/typst/packages/local/elembic" && mkdir -p "$pkgbase/1.1.1" && curl -L https://github.com/PgBiel/elembic/archive/main.tar.gz | tar xz --strip-components=1 --directory="$pkgbase/1.1.1"
2727
```
2828

29-
Elembic can then be imported with `import "@local/elembic:1.1.0" as e`.
29+
Elembic can then be imported with `import "@local/elembic:1.1.1" as e`.

typst.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "elembic"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
compiler = "0.11.0"
55
homepage = "https://pgbiel.github.io/elembic"
66
repository = "https://github.com/PgBiel/elembic"

0 commit comments

Comments
 (0)