Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "1.1.1"
".": "1.2.0"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.2.0](https://github.com/smur89/alta-typst/compare/v1.1.1...v1.2.0) (2026-06-14)


### Features

* render JSON Resume references section ([#121](https://github.com/smur89/alta-typst/issues/121)) ([7473ee4](https://github.com/smur89/alta-typst/commit/7473ee4ce713cc1cb6932ccfddab3410f3df8ce7))

## [1.1.1](https://github.com/smur89/alta-typst/compare/v1.1.0...v1.1.1) (2026-06-14)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ typst init @preview/altacv
Or `#import` it from an existing `.typ`:

```typst
#import "@preview/altacv:1.1.1": alta // x-release-please-version
#import "@preview/altacv:1.2.0": alta // x-release-please-version
```

## Fonts
Expand All @@ -59,7 +59,7 @@ Run `typst fonts` to list what Typst can see on your system.
## Quick start

```typst
#import "@preview/altacv:1.1.1": alta // x-release-please-version
#import "@preview/altacv:1.2.0": alta // x-release-please-version

#let cv = (
basics: (
Expand Down Expand Up @@ -332,7 +332,7 @@ Both column arrays draw from the same section keys: `"work"`, `"volunteer"`, `"f
Example — reorder the right-column sections + tweak theme + use US Letter:

```typst
#import "@preview/altacv:1.1.1": alta, maps-providers, palettes // x-release-please-version
#import "@preview/altacv:1.2.0": alta, maps-providers, palettes // x-release-please-version

#alta(cv, preferences: (
paper: "us-letter",
Expand Down Expand Up @@ -473,7 +473,7 @@ The defaults live in [`internal/labels-en.toml`](internal/labels-en.toml) — a
| `maps-providers` | Dict of map deep-link URL templates — `google`, `apple`, `bing`, `duckduckgo`, `osm`. Use as `mapsProvider: maps-providers.osm`. |

```typst
#import "@preview/altacv:1.1.1": alta, tag, divider, palettes, maps-providers // x-release-please-version
#import "@preview/altacv:1.2.0": alta, tag, divider, palettes, maps-providers // x-release-please-version
```

The contact bar is rendered from `basics.email`, `basics.phone`, `basics.location`, `basics.url`, `basics.profiles`. Visual separators are stripped from the `tel:` dialable part. Suppress or swap deep links via `preferences.linkContactInfo` and `preferences.mapsProvider`.
Expand Down
2 changes: 1 addition & 1 deletion template/cv.typ
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
// renders as `examples/cv.png` (README static preview) and as
// `thumbnail.png` (Typst Universe package card).

#import "@preview/altacv:1.1.1": alta, avatar-placeholder // x-release-please-version
#import "@preview/altacv:1.2.0": alta, avatar-placeholder // x-release-please-version

#let cv = (
basics: (
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 = "altacv"
version = "1.1.1"
version = "1.2.0"
entrypoint = "lib.typ"
authors = ["Shane Murphy"]
license = "MIT"
Expand Down