Merge pull request #101 from DeveloperPaul123/release/0.8.0

0.8.0 release back-merge
This commit is contained in:
Paul T
2025-02-15 22:12:09 -05:00
committed by GitHub
8 changed files with 12 additions and 11 deletions

View File

@@ -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: Below is a basic example for a simple resume:
```typst ```typst
#import "@preview/modern-cv:0.7.0": * #import "@preview/modern-cv:0.8.0": *
#show: resume.with( #show: resume.with(
author: ( author: (
@@ -55,7 +55,8 @@ Below is a basic example for a simple resume:
) )
), ),
profile-picture: none, profile-picture: none,
date: datetime.today().display() date: datetime.today().display(),
page-size: "us-letter"
) )
= Education = Education
@@ -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): 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 ```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`. If you use `just install-preview` you will only need to update the version number to match `typst.toml`.

View File

@@ -1,9 +1,9 @@
#import "../lib.typ" #import "../lib.typ"
#import "@preview/tidy:0.3.0" #import "@preview/tidy:0.4.1"
#let docs = tidy.parse-module( #let docs = tidy.parse-module(
read("../lib.typ"), read("../lib.typ"),
name: "Modern CV", name: "Modern CV",
scope: (resume: lib), scope: (resume: lib),
) )
#tidy.show-module(docs) #tidy.show-module(docs, style: tidy.styles.minimal)

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.7.0": * #import "@preview/modern-cv:0.8.0": *
#show: coverletter.with( #show: coverletter.with(
author: ( author: (

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.7.0": * #import "@preview/modern-cv:0.8.0": *
#show: coverletter.with( #show: coverletter.with(
author: ( author: (

View File

@@ -1,4 +1,4 @@
#import "@preview/modern-cv:0.7.0": * #import "@preview/modern-cv:0.8.0": *
#show: resume.with( #show: resume.with(
author: ( author: (

View File

@@ -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 // setup the document like we do for the resume
#let font = ("Source Sans Pro", "Source Sans 3") #let font = ("Source Sans Pro", "Source Sans 3")

View File

@@ -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 // setup the document like we do for the resume
#let font = ("Source Sans Pro", "Source Sans 3") #let font = ("Source Sans Pro", "Source Sans 3")

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "modern-cv" name = "modern-cv"
version = "0.7.0" version = "0.8.0"
compiler = "0.12.0" compiler = "0.12.0"
entrypoint = "lib.typ" entrypoint = "lib.typ"
authors = ["Paul Tsouchlos <https://github.com/DeveloperPaul123>"] authors = ["Paul Tsouchlos <https://github.com/DeveloperPaul123>"]