Skip to content

Commit

Permalink
bump: Bump version to 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-wolf committed Mar 17, 2024
1 parent cacaf38 commit 7be89b8
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: *
Expand All @@ -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: *
Expand Down
2 changes: 1 addition & 1 deletion gallery/barchart.typ
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion gallery/karls-picture.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@preview/cetz:0.2.1"
#import "@preview/cetz:0.2.2"

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

Expand Down
Binary file modified gallery/pie-chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gallery/pie-chart.typ
Original file line number Diff line number Diff line change
@@ -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 = (
Expand Down
Binary file modified gallery/plot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion gallery/plot.typ
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion gallery/tree.typ
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion gallery/waves.typ
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
Binary file modified manual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion manual.typ
Original file line number Diff line number Diff line change
Expand Up @@ -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: *
...
Expand Down
2 changes: 1 addition & 1 deletion src/lib.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#let version = version((0,2,1))
#let version = version((0,2,2))

#import "canvas.typ": canvas
#import "draw.typ"
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 = "cetz"
version = "0.2.1"
version = "0.2.2"
compiler = "0.10.0"
repository = "https://github.com/johannes-wolf/cetz"
entrypoint = "src/lib.typ"
Expand Down

0 comments on commit 7be89b8

Please sign in to comment.