Skip to content

Commit

Permalink
Merge pull request #10 from cetz-package/cetz-venn-0.1.3
Browse files Browse the repository at this point in the history
treewide: Update version
  • Loading branch information
johannes-wolf authored Jan 23, 2025
2 parents 722b4af + f0e0c42 commit e8362a3
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 19 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,6 @@ jobs:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: imagemagick cargo parallel
version: 1.0
- name: Install typos-cli from crates.io
uses: baptiste0928/cargo-install@v2.2.0
with:
crate: typos-cli
- name: Install just from crates.io
uses: baptiste0928/cargo-install@v2.2.0
with:
Expand All @@ -37,6 +29,9 @@ jobs:
id: setup-typst
with:
version: 'v0.12.0'
- run: |
mkdir -p ~/.local/share/typst/packages/preview/cetz
git clone --depth 1 --branch v0.3.2 https://github.com/cetz-package/cetz.git ~/.local/share/typst/packages/preview/cetz/0.3.2
- run: |
just install @local
just install @preview
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ For information, see the [manual (stable)](https://github.com/cetz-package/cetz-

To use this package, simply add the following code to your document:
```
#import "@preview/cetz:0.3.1"
#import "@preview/cetz-venn:0.1.2"
#import "@preview/cetz:0.3.2"
#import "@preview/cetz-venn:0.1.3"
#cetz.canvas({
cetz-venn.venn2()
Expand Down
2 changes: 1 addition & 1 deletion doc/example.typ
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#import "/src/lib.typ"
#import "@preview/cetz:0.3.1"
#import "@preview/cetz:0.3.2"

// String that gets prefixed to every example code
// for compilation only!
Expand Down
4 changes: 2 additions & 2 deletions gallery/venn2.typ
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#set page(width: auto, height: auto, margin: .5cm)
#import "@preview/cetz:0.3.1"
#import "@preview/cetz-venn:0.1.2": venn2
#import "@preview/cetz:0.3.2"
#import "@preview/cetz-venn:0.1.3": venn2

#cetz.canvas({
import cetz.draw: *
Expand Down
4 changes: 2 additions & 2 deletions gallery/venn3.typ
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#set page(width: auto, height: auto, margin: .5cm)
#import "@preview/cetz:0.3.1"
#import "@preview/cetz-venn:0.1.2": venn3
#import "@preview/cetz:0.3.2"
#import "@preview/cetz-venn:0.1.3": venn3

#cetz.canvas({
import cetz.draw: *
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 @@ -24,7 +24,7 @@
// Outline
#{
show heading: none
columns(2, outline(indent: true, depth: 3))
columns(2, outline(depth: 3))
pagebreak(weak: true)
}

Expand Down
2 changes: 1 addition & 1 deletion src/venn.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1"
#import "@preview/cetz:0.3.2"

#let default-style = (
stroke: auto,
Expand Down
2 changes: 1 addition & 1 deletion tests/helper.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@preview/cetz:0.3.1"
#import "@preview/cetz:0.3.2"
#import "/src/lib.typ" as venn

/// Test case canvas surrounded by a red border
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-venn"
version = "0.1.2"
version = "0.1.3"
repository = "https://github.com/johannes-wolf/cetz-venn"
entrypoint = "src/lib.typ"
authors = [
Expand Down

0 comments on commit e8362a3

Please sign in to comment.