Skip to content

Commit 19559c2

Browse files
committed
version: Bump version
1 parent 9a55ad5 commit 19559c2

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ For information, see the [online manual](https://cetz-package.github.io/docs).
7878
To use this package, simply add the following code to your document:
7979

8080
```typ
81-
#import "@preview/cetz:0.4.0"
81+
#import "@preview/cetz:0.4.1"
8282
8383
#cetz.canvas({
8484
import cetz.draw: *
@@ -102,7 +102,7 @@ just install
102102
The installed version can be imported by prefixing the package name with `@local`.
103103

104104
```typ
105-
#import "@local/cetz:0.4.0"
105+
#import "@local/cetz:0.4.1"
106106
107107
#cetz.canvas({
108108
import cetz.draw: *

docs/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar_position: 1
88
This is the minimal starting point in a `.typ` file:
99

1010
```typ
11-
#import "@preview/cetz:0.4.0"
11+
#import "@preview/cetz:0.4.1"
1212
#cetz.canvas({
1313
import cetz.draw: *
1414
...

docs/tutorials/karl.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ In CeTZ, to draw a picture, two imports and a function call is all you need. Kar
2020

2121
```typ
2222
#set page(width: auto, height: auto)
23-
#import "@preview/cetz:0.4.0"
23+
#import "@preview/cetz:0.4.1"
2424
2525
We are working on
2626
#cetz.canvas({

gallery/karls-picture.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/cetz:0.4.0"
1+
#import "@preview/cetz:0.4.1"
22
#set page(width: auto, height: auto, margin: .5cm)
33

44
#show math.equation: block.with(fill: white, inset: 1pt)

gallery/paciolis.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Example by @samuelireson
2-
#import "@preview/cetz:0.4.0": canvas, draw, tree
2+
#import "@preview/cetz:0.4.1": canvas, draw, tree
33

44
#set page(width: auto, height: auto, margin: .5cm)
55

gallery/periodic-table.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copied from https://github.com/janosh/tikz/blob/da1b4582/assets/periodic-table/periodic-table.typ
22

3-
#import "@preview/cetz:0.4.0": canvas, draw
3+
#import "@preview/cetz:0.4.1": canvas, draw
44

55
#set page(width: auto, height: auto, margin: 15pt)
66

gallery/plate-capacitor.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copied from https://github.com/janosh/tikz/blob/87754ea/assets/plate-capacitor/plate-capacitor.typ
22

3-
#import "@preview/cetz:0.4.0": canvas, draw
3+
#import "@preview/cetz:0.4.1": canvas, draw
44
#import draw: line, rect, content, bezier, group, anchor
55

66
#set page(width: auto, height: auto, margin: 5pt)

gallery/torus.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// From https://forum.typst.app/t/how-to-best-draw-a-3d-torus/4744/4
22
// Note: current settings use about 2 GiB of RAM and 20 s of compilation time.
3-
#import "@preview/cetz:0.4.0"
3+
#import "@preview/cetz:0.4.1"
44

55
#set page(width: auto, height: auto, margin: 0.6pt)
66

gallery/tree.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/cetz:0.4.0": canvas, draw, tree
1+
#import "@preview/cetz:0.4.1": canvas, draw, tree
22

33
#set page(width: auto, height: auto, margin: .5cm)
44

gallery/waves.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/cetz:0.4.0": canvas, draw, vector, matrix
1+
#import "@preview/cetz:0.4.1": canvas, draw, vector, matrix
22

33
#set page(width: auto, height: auto, margin: .5cm)
44

0 commit comments

Comments
 (0)