From 632c032ad1491053b218c26c238334a89e2e5c7a Mon Sep 17 00:00:00 2001 From: Joshua Tzucker Date: Sun, 7 Nov 2021 20:47:24 -0800 Subject: [PATCH] Fix: Include `location` in work positions, v3.2.0 - Closes #58 - Update version to `v3.2.0` --- README.md | 3 ++- package-lock.json | 2 +- package.json | 2 +- src/main.js | 3 ++- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e7dfed1..6166d56 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,8 @@ If I'm trying to assist you in solving an issue with this tool, I might have you Date | Release | Notes --- | --- | --- -11/7/2021 | 3.1.0 | Fix: Incorrect sorting of volunteer positions (see [#55](https://github.com/joshuatz/linkedin-to-jsonresume/issues/55))
Fix: Missing Certificates (see [#59](https://github.com/joshuatz/linkedin-to-jsonresume/issues/59))
Improve/Fix: Extract Language proficiencies / languages (see [#59](https://github.com/joshuatz/linkedin-to-jsonresume/issues/59)) +11/7/2021 | 3.2.0 | Improve/Fix: Include location in work positions (see [#58](https://github.com/joshuatz/linkedin-to-jsonresume/issues/58)) +11/7/2021 | 3.1.0 | Fix: Incorrect sorting of volunteer positions (see [#55](https://github.com/joshuatz/linkedin-to-jsonresume/issues/55))
Fix: Missing Certificates (see [#59](https://github.com/joshuatz/linkedin-to-jsonresume/issues/59))
Improve/Fix: Extract Language proficiencies / languages (see [#59](https://github.com/joshuatz/linkedin-to-jsonresume/issues/59))
Improve: Cleanup, README update 10/31/2021 | 3.0.0 | **Breaking Update**: This extension has now been updated to output JSON matching the `v1` schema specification released by JSON Resume (see [#53](https://github.com/joshuatz/linkedin-to-jsonresume/pull/53) and [#56](https://github.com/joshuatz/linkedin-to-jsonresume/pull/56)). If you still need the `v0.0.16` schema output, it is no longer the default, but is still available for now under the "legacy" schema option. Thanks @ [anthonyjdella](https://github.com/anthonyjdella) for the PR and code contributions!

Fix: Also rolled into this release is a fix for truncated volunteer experiences (see [#55](https://github.com/joshuatz/linkedin-to-jsonresume/issues/55)). Thanks @ [fkrauthan](https://github.com/fkrauthan) for the heads up! 2/27/2021 | 2.1.2 | Fix: Multiple issues around work history / experience; missing titles, ordering, etc. Overhauled approach to extracting work entries. 12/19/2020 | 2.1.1 | Fix: Ordering of work history with new API endpoint ([#38](https://github.com/joshuatz/linkedin-to-jsonresume/issues/38)) diff --git a/package-lock.json b/package-lock.json index 0587d32..dec2e03 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "linkedin-to-json-resume-exporter", - "version": "3.1.0", + "version": "3.2.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b8d87f1..e33cae7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "linkedin-to-json-resume-exporter", - "version": "3.1.0", + "version": "3.2.0", "description": "Browser tool to grab details from your open LinkedIn profile page and export to JSON Resume Schema", "private": true, "main": "src/main.js", diff --git a/src/main.js b/src/main.js index ddcef2f..5b7c15a 100644 --- a/src/main.js +++ b/src/main.js @@ -359,7 +359,8 @@ window.LinkedinToResumeJson = (() => { endDate: parsedWork.endDate, highlights: parsedWork.highlights, summary: parsedWork.summary, - url: parsedWork.website + url: parsedWork.website, + location: positionObj.locationName }); }