diff --git a/README.md b/README.md index 599d6a81..65f05a17 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.1" +#import "@preview/cetz:0.2.2" #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.1" +#import "@local/cetz:0.2.2" #cetz.canvas({ import cetz.draw: * diff --git a/gallery/barchart.typ b/gallery/barchart.typ index 0fe4f170..ed502765 100644 --- a/gallery/barchart.typ +++ b/gallery/barchart.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.1": canvas, chart, draw +#import "@preview/cetz:0.2.2": canvas, chart, draw #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/karls-picture.typ b/gallery/karls-picture.typ index b66b3a03..23943585 100644 --- a/gallery/karls-picture.typ +++ b/gallery/karls-picture.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.1" +#import "@preview/cetz:0.2.2" #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/pie-chart.png b/gallery/pie-chart.png index df7b7e02..721f27aa 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 1b915688..fbadbe4f 100644 --- a/gallery/pie-chart.typ +++ b/gallery/pie-chart.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.1" +#import "@preview/cetz:0.2.2" #set page(width: auto, height: auto, margin: .5cm) #let data = ( diff --git a/gallery/plot.png b/gallery/plot.png index 602e3804..20b2408f 100644 Binary files a/gallery/plot.png and b/gallery/plot.png differ diff --git a/gallery/plot.typ b/gallery/plot.typ index f2534136..9981dd57 100644 --- a/gallery/plot.typ +++ b/gallery/plot.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.1": canvas, plot +#import "@preview/cetz:0.2.2": canvas, plot #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/tree.typ b/gallery/tree.typ index f02e753e..91c6f7eb 100644 --- a/gallery/tree.typ +++ b/gallery/tree.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.1": canvas, draw, tree +#import "@preview/cetz:0.2.2": canvas, draw, tree #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/waves.typ b/gallery/waves.typ index d6d58830..0833d62c 100644 --- a/gallery/waves.typ +++ b/gallery/waves.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.2.1": canvas, draw, vector, matrix +#import "@preview/cetz:0.2.2": canvas, draw, vector, matrix #set page(width: auto, height: auto, margin: .5cm) diff --git a/manual.pdf b/manual.pdf index 22feb2cf..a9a03dc8 100644 Binary files a/manual.pdf and b/manual.pdf differ diff --git a/manual.typ b/manual.typ index 508210e6..9affcec5 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.1" +#import "@preview/cetz:0.2.2" #cetz.canvas({ import cetz.draw: * ... diff --git a/src/lib.typ b/src/lib.typ index 538e33ae..b90d3b35 100644 --- a/src/lib.typ +++ b/src/lib.typ @@ -1,4 +1,4 @@ -#let version = version((0,2,1)) +#let version = version((0,2,2)) #import "canvas.typ": canvas #import "draw.typ" diff --git a/typst.toml b/typst.toml index e4cb413e..74caa257 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "cetz" -version = "0.2.1" +version = "0.2.2" compiler = "0.10.0" repository = "https://github.com/johannes-wolf/cetz" entrypoint = "src/lib.typ"