Skip to content

Commit

Permalink
Merge pull request #101 from DeveloperPaul123/release/0.8.0
Browse files Browse the repository at this point in the history
0.8.0 release back-merge
  • Loading branch information
DeveloperPaul123 authored Feb 16, 2025
2 parents 74bf3d6 + 71ccbf8 commit 2bd1355
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 11 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ See `typst fonts --help` for more information on configuring fonts for `typst` t
Below is a basic example for a simple resume:

```typst
#import "@preview/modern-cv:0.7.0": *
#import "@preview/modern-cv:0.8.0": *
#show: resume.with(
author: (
Expand All @@ -55,7 +55,8 @@ Below is a basic example for a simple resume:
)
),
profile-picture: none,
date: datetime.today().display()
date: datetime.today().display(),
page-size: "us-letter"
)
= Education
Expand Down Expand Up @@ -98,7 +99,7 @@ To build and test the project locally, you will need to install the `typst` CLI.
With typst installed you can make changes to `lib.typ` and then `just install` or `just install-preview` to install the package locally. Change the import statements in the template files to point to the local package (if needed):

```typst
#import "@local/modern-cv:0.6.0": *
#import "@local/modern-cv:0.8.0": *
````
If you use `just install-preview` you will only need to update the version number to match `typst.toml`.
Expand Down
4 changes: 2 additions & 2 deletions docs/manual.typ
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#import "../lib.typ"
#import "@preview/tidy:0.3.0"
#import "@preview/tidy:0.4.1"

#let docs = tidy.parse-module(
read("../lib.typ"),
name: "Modern CV",
scope: (resume: lib),
)
#tidy.show-module(docs)
#tidy.show-module(docs, style: tidy.styles.minimal)
2 changes: 1 addition & 1 deletion template/coverletter.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.7.0": *
#import "@preview/modern-cv:0.8.0": *

#show: coverletter.with(
author: (
Expand Down
2 changes: 1 addition & 1 deletion template/coverletter2.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.7.0": *
#import "@preview/modern-cv:0.8.0": *

#show: coverletter.with(
author: (
Expand Down
2 changes: 1 addition & 1 deletion template/resume.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.7.0": *
#import "@preview/modern-cv:0.8.0": *

#show: resume.with(
author: (
Expand Down
2 changes: 1 addition & 1 deletion tests/resume/test.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@local/modern-cv:0.7.0": *
#import "@local/modern-cv:0.8.0": *

// setup the document like we do for the resume
#let font = ("Source Sans Pro", "Source Sans 3")
Expand Down
2 changes: 1 addition & 1 deletion tests/utilities/test.typ
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#import "@local/modern-cv:0.7.0": *
#import "@local/modern-cv:0.8.0": *

// setup the document like we do for the resume
#let font = ("Source Sans Pro", "Source Sans 3")
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 = "modern-cv"
version = "0.7.0"
version = "0.8.0"
compiler = "0.12.0"
entrypoint = "lib.typ"
authors = ["Paul Tsouchlos <https://github.com/DeveloperPaul123>"]
Expand Down

0 comments on commit 2bd1355

Please sign in to comment.