Skip to content

Commit

Permalink
chore: update version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperPaul123 committed Jan 20, 2025
1 parent 74bf3d6 commit 60aa244
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 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
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 60aa244

Please sign in to comment.