From f6351257cde68e4a253eb6b96607f5acf1d5bf16 Mon Sep 17 00:00:00 2001
From: user <70670632+stuxf@users.noreply.github.com>
Date: Mon, 30 Dec 2024 01:59:08 -0800
Subject: [PATCH] 0.2.3 bump for release
---
CHANGELOG.md | 6 +++++-
README.md | 6 ++++--
template/main.typ | 4 ++--
typst.toml | 2 +-
4 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index fc0a862..452f1f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,6 +1,10 @@
# Basic Resume Changelog
-## [v0.2.1](hhttps://github.com/stuxf/basic-typst-resume-template/releases/tags/v0.2.2)
+## [v0.2.3](hhttps://github.com/stuxf/basic-typst-resume-template/releases/tags/v0.2.3)
+
+User can set posistion of author and personal info.
+
+## [v0.2.2](hhttps://github.com/stuxf/basic-typst-resume-template/releases/tags/v0.2.2)
Allow changing of page sizes from us-letter to other sizes, such as A4, for Non-US folks
diff --git a/README.md b/README.md
index a0ab130..1c1c348 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Basic Resume
-
Version 0.2.2
+Version 0.2.3
This is a template for a simple resume. It is intended to be used as a good starting point for quickly crafting a standard resume that will properly be parsed by ATS systems. Inspiration is taken from [Jake's Resume](https://github.com/jakegut/resume) and [guided-resume-starter-cgc](https://typst.app/universe/package/guided-resume-starter-cgc/). I'm currently a college student and was unable to find a Typst resume template that fit my needs, so I wrote my own. I hope this template can be useful to others as well.
@@ -13,7 +13,7 @@ This is a template for a simple resume. It is intended to be used as a good star
A barebones resume looks like this, which you can use to get started.
```typst
-#import "@preview/basic-resume:0.2.2": *
+#import "@preview/basic-resume:0.2.3": *
// Put your personal information here, replacing mine
#let name = "Stephen Xu"
@@ -38,6 +38,8 @@ A barebones resume looks like this, which you can use to get started.
accent-color: "#26428b",
font: "New Computer Modern",
paper: "us-letter",
+ author-position: left,
+ personal-info-position: left,
)
/*
diff --git a/template/main.typ b/template/main.typ
index ed7a979..18bf379 100644
--- a/template/main.typ
+++ b/template/main.typ
@@ -1,4 +1,4 @@
-#import "@preview/basic-resume:0.2.2": *
+#import "@preview/basic-resume:0.2.3": *
// Put your personal information here, replacing mine
#let name = "Stephen Xu"
@@ -131,4 +131,4 @@
// )
== Skills
- *Programming Languages*: JavaScript, Python, C/C++, HTML/CSS, Java, Bash, R, Flutter, Dart
-- *Technologies*: React, Astro, Svelte, Tailwind CSS, Git, UNIX, Docker, Caddy, NGINX, Google Cloud Platform
\ No newline at end of file
+- *Technologies*: React, Astro, Svelte, Tailwind CSS, Git, UNIX, Docker, Caddy, NGINX, Google Cloud Platform
diff --git a/typst.toml b/typst.toml
index c16707f..466dcd9 100644
--- a/typst.toml
+++ b/typst.toml
@@ -2,7 +2,7 @@
[package]
name = "basic-resume"
-version = "0.2.2"
+version = "0.2.3"
entrypoint = "src/lib.typ"
authors = ["Stephen Xu "]
license = "Unlicense"