Skip to content

Commit b5c3a5d

Browse files
committed
Release v0.7.4-beta3
1 parent 1617a64 commit b5c3a5d

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.resumecraftr_checkpoint

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
generate_custom
2+
poetry run resumecraftr setup --language "EN" --provider "openrouter" --model "deepseek/deepseek-chat"
3+
poetry run resumecraftr new-cv "John Doe Principal Engineer Resume"
4+
populate_cv_sections
5+
poetry run resumecraftr add-job "Principal Engineer, Applied AI Experiences" --content "Northstar Studio needs a Principal Engineer to partner with Marketing and Revenue Operations leaders. Responsibilities include scaling LangChain/LangGraph copilots for analytics storytelling, coaching senior engineers, managing experimentation reliability, and translating signal quality into executive-ready narratives. Must demonstrate 15 years driving growth platforms, cloud infrastructure mastery, and persuasive data storytelling."

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ LLM interactions now run through LangChain graph pipelines with retrieval backed
2626

2727
---
2828

29-
## Release Notes v0.7.3-beta3
29+
## Release Notes v0.7.4-beta3
3030

31-
You can find the release notes for version `v0.7.3-beta3` [here](https://github.com/raestrada/ResumeCraftr/releases/tag/v0.7.3-beta3).
31+
You can find the release notes for version `v0.7.4-beta3` [here](https://github.com/raestrada/ResumeCraftr/releases/tag/v0.7.4-beta3).
3232

3333
## Step 1: Install ResumeCraftr
3434

@@ -37,7 +37,7 @@ First, install **ResumeCraftr** using [pipx](https://pypa.github.io/pipx/), a to
3737
To install **ResumeCraftr**, run:
3838

3939
```bash
40-
pipx install git+https://github.com/raestrada/[email protected].3-beta3
40+
pipx install git+https://github.com/raestrada/[email protected].4-beta3
4141
```
4242

4343
## Quick Examples

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ResumeCraftr now routes every LLM call through LangChain/ LangGraph, persists kn
2525
Ensure you have `pipx` installed, then install ResumeCraftr with:
2626

2727
```bash
28-
pipx install git+https://github.com/raestrada/[email protected].3-beta3
28+
pipx install git+https://github.com/raestrada/[email protected].4-beta3
2929
```
3030

3131
PyMuPDF ships with the project, so there is no longer a dependency on Pandoc or LaTeX. You only need:

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@
335335
<body>
336336
<header>
337337
<div class="release-link">
338-
<a href="https://github.com/raestrada/ResumeCraftr/releases/tag/v0.7.3-beta3">Release Notes v0.7.3-beta3</a>
338+
<a href="https://github.com/raestrada/ResumeCraftr/releases/tag/v0.7.4-beta3">Release Notes v0.7.4-beta3</a>
339339
</div>
340340
<nav>
341341
<a href="https://storycraftr.app" class="highlight-link">Check Out StoryCraftr for Novel Writing!</a>
@@ -377,7 +377,7 @@ <h2>Why ResumeCraftr?</h2>
377377
</p>
378378
<div class="coming-soon">
379379
<p>Install ResumeCraftr using pipx:</p>
380-
<code>pipx install git+https://github.com/raestrada/[email protected].3-beta3</code>
380+
<code>pipx install git+https://github.com/raestrada/[email protected].4-beta3</code>
381381
</div>
382382
</section>
383383

resumecraftr/pdf/document.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def sort_key(exp: ExperienceEntry):
108108

109109
dates = exp.dates
110110
if not dates:
111-
return (0, 0, "")
111+
return (0, "", exp.role or "")
112112
parts = re.split(r"\s*-\s*", dates)
113113
end = parts[-1]
114114
year = None

0 commit comments

Comments
 (0)