Skip to content

Commit 140d751

Browse files
committed
Version update to 1.0.1 to sync with package version on the Universe
- A new version was created to reflect recent bug fix on README. - A new version is created to allow for reproducability of packages despite the change being only a readme change. This is because README is still part of the typst package - See: https://github.com/typst/packages/tree/main/packages/preview/clickworthy-resume/1.0.1
1 parent 5db7fe2 commit 140d751

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ The cover letter is generated using a customizable `cover-letter` function that
364364

365365
### Project Structure
366366
- `src/` contains the source code of the library. `src/lib.typ` is a wrapper import for other `*.typ` sources for the ease of importing.
367-
- `template/` contains the templates/examples of using **clickworthy-resume**. It is what the user of **clickworthy-resume** template is expected to see when running `typst init @preview/clickworthy-resume` and therefore it imports `#import "@preview/clickworthy-resume:1.0.0": *`
367+
- `template/` contains the templates/examples of using **clickworthy-resume**. It is what the user of **clickworthy-resume** template is expected to see when running `typst init @preview/clickworthy-resume` and therefore it imports `#import "@preview/clickworthy-resume:1.0.1": *`
368368
- `tests/` contains the tests for **each** template in `templates/`. Each test has a `ref/` that contains a reference `png` output. Each test has a `test.typ`, which is a mirror of the templates in `template/` except that they import `#import "../../src/lib.typ": *` locally. See the [**tytanic book**](https://typst-community.github.io/tytanic/index.html) for more info.
369369

370370
> **NOTE**: As stated above, all `test.typ` files are mirror of templates in `template/` except the `cover-letter` test since it involves `#let date = datetime.today().display()`, which makes the test undeterminitic on different systems/CI. On the `test.typ` for `cover-letter`, it's changed to a constant date string. See the [**tytanic book write-up**](https://typst-community.github.io/tytanic/guides/ci.html) on this issue and similar test discrepancy issues.
@@ -387,7 +387,7 @@ The cover letter is generated using a customizable `cover-letter` function that
387387
388388
### What to Change?
389389
- To change/update the core library logic, `*.typ` files in `src/` should be modified. A new library file `<feature>.typ` should be added to the `lib.typ` wrapper.
390-
- Now, these changes ***will not*** be reflected in the templates in `template/` since it imports `#import "@preview/clickworthy-resume:1.0.0": *`
390+
- Now, these changes ***will not*** be reflected in the templates in `template/` since it imports `#import "@preview/clickworthy-resume:1.0.1": *`
391391
- Therefore, local testing should be done by either:
392392
1. using `make install` after each change to install the package locally. Then temporarily changing `@preview` to `@local` in the import.
393393
2. importing the `lib.typ` directly using the relative path: `#import "../src/lib.typ": *`

template/cover-letter.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/clickworthy-resume:1.0.0": *
1+
#import "@preview/clickworthy-resume:1.0.1": *
22

33
// Personal Information
44
#let name = "Jordan Michaels"

template/cv.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/clickworthy-resume:1.0.0": *
1+
#import "@preview/clickworthy-resume:1.0.1": *
22

33
// Personal Information
44
#let name = "Dr. Alex Morgan"

template/resume.typ

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#import "@preview/clickworthy-resume:1.0.0": *
1+
#import "@preview/clickworthy-resume:1.0.1": *
22

33
// Personal Information
44
#let name = "Jordan Michaels"

typst.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "clickworthy-resume"
5-
version = "1.0.0"
5+
version = "1.0.1"
66
entrypoint = "src/lib.typ"
77
authors = ["Abdullah Hendy <https://github.com/AbdullahHendy>"]
88
license = "MIT"

0 commit comments

Comments
 (0)