diff --git a/README.md b/README.md index f4e45005..599d6a81 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ For information, see the [manual (stable)](https://github.com/johannes-wolf/cetz To use this package, simply add the following code to your document: ``` -#import "@preview/cetz:0.2.0" +#import "@preview/cetz:0.2.1" #cetz.canvas({ import cetz.draw: * @@ -75,7 +75,7 @@ just install The installed version can be imported by prefixing the package name with `@local`. ```typ -#import "@local/cetz:0.2.0" +#import "@local/cetz:0.2.1" #cetz.canvas({ import cetz.draw: * diff --git a/gallery/barchart.png b/gallery/barchart.png index 034db682..d72c7838 100644 Binary files a/gallery/barchart.png and b/gallery/barchart.png differ diff --git a/gallery/barchart.typ b/gallery/barchart.typ index ce88faf7..0fe4f170 100644 --- a/gallery/barchart.typ +++ b/gallery/barchart.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.0": canvas, chart, draw +#import "@preview/cetz:0.2.1": canvas, chart, draw #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/karls-picture.typ b/gallery/karls-picture.typ index fb6a8484..b66b3a03 100644 --- a/gallery/karls-picture.typ +++ b/gallery/karls-picture.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.0" +#import "@preview/cetz:0.2.1" #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/pie-chart.png b/gallery/pie-chart.png index 23c3acf6..df7b7e02 100644 Binary files a/gallery/pie-chart.png and b/gallery/pie-chart.png differ diff --git a/gallery/pie-chart.typ b/gallery/pie-chart.typ index 6bc5e294..1b915688 100644 --- a/gallery/pie-chart.typ +++ b/gallery/pie-chart.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.0" +#import "@preview/cetz:0.2.1" #set page(width: auto, height: auto, margin: .5cm) #let data = ( diff --git a/gallery/plot.png b/gallery/plot.png index 16e68d9b..602e3804 100644 Binary files a/gallery/plot.png and b/gallery/plot.png differ diff --git a/gallery/plot.typ b/gallery/plot.typ index 10d53e46..f2534136 100644 --- a/gallery/plot.typ +++ b/gallery/plot.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.0": canvas, plot +#import "@preview/cetz:0.2.1": canvas, plot #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/tree.png b/gallery/tree.png index ebef8fbc..f839350f 100644 Binary files a/gallery/tree.png and b/gallery/tree.png differ diff --git a/gallery/tree.typ b/gallery/tree.typ index 3aea2512..f02e753e 100644 --- a/gallery/tree.typ +++ b/gallery/tree.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.0": canvas, draw, tree +#import "@preview/cetz:0.2.1": canvas, draw, tree #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/waves.typ b/gallery/waves.typ index 1e7901db..d6d58830 100644 --- a/gallery/waves.typ +++ b/gallery/waves.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.0": canvas, draw, vector, matrix +#import "@preview/cetz:0.2.1": canvas, draw, vector, matrix #set page(width: auto, height: auto, margin: .5cm) diff --git a/manual.pdf b/manual.pdf index 6fc99b1d..0c5c63b2 100644 Binary files a/manual.pdf and b/manual.pdf differ diff --git a/manual.typ b/manual.typ index 09a65aa1..41b76d20 100644 --- a/manual.typ +++ b/manual.typ @@ -46,7 +46,7 @@ The name CeTZ is a recursive acronym for "CeTZ, ein Typst Zeichenpaket" (german This is the minimal starting point: #pad(left: 1em)[```typ -#import "@preview/cetz:0.2.0" +#import "@preview/cetz:0.2.1" #cetz.canvas({ import cetz.draw: * ... diff --git a/src/lib.typ b/src/lib.typ index e2c0afdb..538e33ae 100644 --- a/src/lib.typ +++ b/src/lib.typ @@ -1,4 +1,4 @@ -#let version = version((0,2,0)) +#let version = version((0,2,1)) #import "canvas.typ": canvas #import "draw.typ" diff --git a/typst.toml b/typst.toml index 5f36498f..e4cb413e 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "cetz" -version = "0.2.0" +version = "0.2.1" compiler = "0.10.0" repository = "https://github.com/johannes-wolf/cetz" entrypoint = "src/lib.typ"