Skip to content

Commit

Permalink
release: Bump version (0.1.0) (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
johannes-wolf authored Aug 18, 2023
1 parent 1dd907a commit 6949cdc
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
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](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: *
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.0.2"
#import "@local/cetz:0.1.0"
#cetz.canvas({
import cetz.draw: *
Expand Down
2 changes: 1 addition & 1 deletion gallery/3d-chart.typ
Original file line number Diff line number Diff line change
@@ -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)

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.0.2": canvas, chart
#import "@preview/cetz:0.1.0": canvas, chart

#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.0.2"
#import "@preview/cetz:0.1.0"

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

Expand Down
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 "@local/cetz:0.0.2"
#import "@preview/cetz:0.1.0"

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

Expand Down
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.0.2": canvas, plot
#import "@preview/cetz:0.1.0": 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.0.2": canvas, draw, tree
#import "@preview/cetz:0.1.0": canvas, draw, tree

#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 @@ -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: *
...
Expand Down
3 changes: 1 addition & 2 deletions src/lib.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#let version = (0,0,3)
#let version = (0,1,0)

#import "canvas.typ": canvas
#import "draw.typ"
Expand All @@ -21,4 +21,3 @@
#let cetz-tree = tree
#let cetz-vector = vector
#let cetz-matrix = matrix

2 changes: 1 addition & 1 deletion tests/local-package/test.typ
Original file line number Diff line number Diff line change
@@ -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: *
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.0.2"
version = "0.1.0"
repository = "https://github.com/johannes-wolf/typst-canvas"
entrypoint = "src/lib.typ"
authors = [
Expand Down

0 comments on commit 6949cdc

Please sign in to comment.