diff --git a/CHANGES.md b/CHANGES.md index 8dc5b76b..f6bd062d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -# 0.0.3 +# 0.1.0 ## Plot - Added arguments `plot-style` and `mark-style` to the `plot(..)` base function that allow providing a base style that gets inherited by all graphs. diff --git a/README.md b/README.md index 41098a3d..77ace03c 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ For information, see the [manual](manual.pdf?raw=true). To use this package, simply add the following code to your document: ``` -#import "@preview/cetz:0.0.2" +#import "@preview/cetz:0.1.0" #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.0.2" +#import "@local/cetz:0.1.0" #cetz.canvas({ import cetz.draw: * diff --git a/gallery/3d-chart.typ b/gallery/3d-chart.typ index 9da9c034..c0e3f106 100644 --- a/gallery/3d-chart.typ +++ b/gallery/3d-chart.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.0.2": canvas, draw +#import "@preview/cetz:0.1.0": canvas, draw #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/barchart.typ b/gallery/barchart.typ index 1b98b7e4..31139545 100644 --- a/gallery/barchart.typ +++ b/gallery/barchart.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.0.2": canvas, chart +#import "@preview/cetz:0.1.0": canvas, chart #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/karls-picture.typ b/gallery/karls-picture.typ index ac3d8e3c..a36ae65e 100644 --- a/gallery/karls-picture.typ +++ b/gallery/karls-picture.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.0.2" +#import "@preview/cetz:0.1.0" #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/pie-chart.typ b/gallery/pie-chart.typ index 4c1951f8..7413a96f 100644 --- a/gallery/pie-chart.typ +++ b/gallery/pie-chart.typ @@ -1,4 +1,4 @@ -#import "@local/cetz:0.0.2" +#import "@preview/cetz:0.1.0" #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/plot.typ b/gallery/plot.typ index 45d206a1..44d64094 100644 --- a/gallery/plot.typ +++ b/gallery/plot.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.0.2": canvas, plot +#import "@preview/cetz:0.1.0": canvas, plot #set page(width: auto, height: auto, margin: .5cm) diff --git a/gallery/tree.typ b/gallery/tree.typ index 5485041d..4935bb04 100644 --- a/gallery/tree.typ +++ b/gallery/tree.typ @@ -1,4 +1,4 @@ -#import "@preview/cetz:0.0.2": canvas, draw, tree +#import "@preview/cetz:0.1.0": canvas, draw, tree #set page(width: auto, height: auto, margin: .5cm) diff --git a/manual.pdf b/manual.pdf index 3d120142..aa2511da 100644 Binary files a/manual.pdf and b/manual.pdf differ diff --git a/manual.typ b/manual.typ index 0d50cfb3..c7b6ba51 100644 --- a/manual.typ +++ b/manual.typ @@ -120,7 +120,7 @@ The name CeTZ is a recursive acronym for "CeTZ, ein Typst Zeichenpacket" (german This is the minimal starting point: ```typ - #import "@local/cetz:0.0.2" + #import "@local/cetz:0.1.0" #cetz.canvas({ import cetz.draw: * ... diff --git a/src/lib.typ b/src/lib.typ index 135cf0d0..d330aa49 100644 --- a/src/lib.typ +++ b/src/lib.typ @@ -1,4 +1,4 @@ -#let version = (0,0,3) +#let version = (0,1,0) #import "canvas.typ": canvas #import "draw.typ" @@ -21,4 +21,3 @@ #let cetz-tree = tree #let cetz-vector = vector #let cetz-matrix = matrix - diff --git a/tests/local-package/test.typ b/tests/local-package/test.typ index 03716356..ea2efdba 100644 --- a/tests/local-package/test.typ +++ b/tests/local-package/test.typ @@ -1,6 +1,6 @@ #set page(width: auto, height: auto) -#import "@local/cetz:0.0.2" +#import "@local/cetz:0.1.0" #box(stroke: 2pt + red, cetz.canvas({ import cetz.draw: * diff --git a/typst.toml b/typst.toml index 87d1ef1c..8c45d561 100644 --- a/typst.toml +++ b/typst.toml @@ -1,6 +1,6 @@ [package] name = "cetz" -version = "0.0.2" +version = "0.1.0" repository = "https://github.com/johannes-wolf/typst-canvas" entrypoint = "src/lib.typ" authors = [