Skip to content

Commit f77ff71

Browse files
yunanwgclaude
andcommitted
build: bump version to 3.3.0
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 9065ff4 commit f77ff71

39 files changed

+41
-41
lines changed

docs/web/docs/api-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ When `ref-full` is `false`, only the entries whose keys appear in
239239
Renders a vertical bar separator (`|`) for use inside skill entries.
240240

241241
```typ
242-
#import "@preview/brilliant-cv:3.2.0": h-bar
242+
#import "@preview/brilliant-cv:3.3.0": h-bar
243243
244244
[Python #h-bar() SQL #h-bar() Tableau]
245245
```

docs/web/docs/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ typst init @preview/brilliant-cv
1111
Replace the version with the latest or any release (after 2.0.0) if needed:
1212

1313
```bash
14-
typst init @preview/brilliant-cv:3.2.0
14+
typst init @preview/brilliant-cv:3.3.0
1515
```
1616

1717
## Step 2: Install Fonts
@@ -50,7 +50,7 @@ The most important keys to set first:
5050
## Step 5: Add Your First Entry
5151

5252
```typ
53-
#import "@preview/brilliant-cv:3.2.0": cv-section, cv-entry
53+
#import "@preview/brilliant-cv:3.3.0": cv-section, cv-entry
5454
5555
#cv-section("Education")
5656

docs/web/docs/migration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ The package entry point is unchanged, but you should update any version-pinned i
1010

1111
```typ
1212
// Before (v2)
13-
#import "@preview/brilliant-cv:2.0.3": *
13+
#import "@preview/brilliant-cv:3.3.0": *
1414
1515
// After (v3)
16-
#import "@preview/brilliant-cv:3.2.0": *
16+
#import "@preview/brilliant-cv:3.3.0": *
1717
```
1818

1919
### 2. Parameter Renaming (now panics)

docs/web/docs/recipes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ awesome_color = "#1E90FF"
104104
Create a cover letter with a signature image at the bottom:
105105

106106
```typ
107-
#import "@preview/brilliant-cv:3.2.0": letter
107+
#import "@preview/brilliant-cv:3.3.0": letter
108108
109109
#let metadata = toml("metadata.toml")
110110

docs/web/docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Install Roboto and Source Sans 3 (or Source Sans Pro) locally. For non-Latin lan
1313
Make sure you import `h-bar` from the package:
1414

1515
```typ
16-
#import "@preview/brilliant-cv:3.2.0": h-bar
16+
#import "@preview/brilliant-cv:3.3.0": h-bar
1717
```
1818

1919
The old name `hBar` has been removed in v3. See the [Migration Guide](migration.md) for all renamed functions.

docs/web/generate-api-reference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
Renders a vertical bar separator (`|`) for use inside skill entries.
3939
4040
```typ
41-
#import "@preview/brilliant-cv:3.2.0": h-bar
41+
#import "@preview/brilliant-cv:3.3.0": h-bar
4242
4343
[Python #h-bar() SQL #h-bar() Tableau]
4444
```

template/cv.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Imports
2-
#import "@preview/brilliant-cv:3.2.0": cv
2+
#import "@preview/brilliant-cv:3.3.0": cv
33
#let metadata = toml("./metadata.toml")
44
#let cv-language = sys.inputs.at("language", default: none)
55
#let metadata = if cv-language != none {

template/letter.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Imports
2-
#import "@preview/brilliant-cv:3.2.0": letter
2+
#import "@preview/brilliant-cv:3.3.0": letter
33
#let metadata = toml("./metadata.toml")
44
#let letter-language = sys.inputs.at("language", default: none)
55
#let metadata = if letter-language != none {

template/modules_de/certificates.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Imports
2-
#import "@preview/brilliant-cv:3.2.0": cv-section, cv-honor
2+
#import "@preview/brilliant-cv:3.3.0": cv-section, cv-honor
33
#let metadata = toml("../metadata.toml")
44
#let cv-section = cv-section.with(metadata: metadata)
55
#let cv-honor = cv-honor.with(metadata: metadata)

template/modules_de/education.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Imports
2-
#import "@preview/brilliant-cv:3.2.0": cv-section, cv-entry, h-bar
2+
#import "@preview/brilliant-cv:3.3.0": cv-section, cv-entry, h-bar
33
#let metadata = toml("../metadata.toml")
44
#let cv-section = cv-section.with(metadata: metadata)
55
#let cv-entry = cv-entry.with(metadata: metadata)

0 commit comments

Comments
 (0)