From 8cd939b54d6f6ab0f1df501fa46f27cf1495b82e Mon Sep 17 00:00:00 2001 From: ModEngineer <43882205+ModEngineer@users.noreply.github.com> Date: Thu, 14 Apr 2022 11:34:36 -0500 Subject: [PATCH] Finally finished the release description writer Also bumped the version to prevent a release collision --- .github/workflows/publish-release.yml | 2 +- ppl_meshexport_addon/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 8c6d2f3..20bdb76 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -54,7 +54,7 @@ jobs: textBody += " Commit messages and descriptions since the last release are shown below:" for (const hash of hashes) { textBody += '\n- ' + child_process.execSync(`git log --pretty='format:%s' -n 1 ${hash}`, {cwd: process.env.GITHUB_WORKSPACE}).toString() - let commitBodyLines = child_process.execSync(`git log --pretty='format:%b' -n 1 ${hash}`, {cwd: process.env.GITHUB_WORKSPACE}).toString() + let commitBodyLines = child_process.execSync(`git log --pretty='format:%b' -n 1 ${hash}`, {cwd: process.env.GITHUB_WORKSPACE}).toString().split('\n') for (const line of commitBodyLines) { textBody += '\n ' + line } diff --git a/ppl_meshexport_addon/__init__.py b/ppl_meshexport_addon/__init__.py index 5916bb7..766b550 100644 --- a/ppl_meshexport_addon/__init__.py +++ b/ppl_meshexport_addon/__init__.py @@ -3,7 +3,7 @@ "author": "ModEngineer", "blender": (2, 80, 0), "description": "A mesh exporter for PewPew Live", - "version": (0, 5, 5), + "version": (0, 5, 6), "tracker_url": "https://www.github.com/ModEngineer/PewPewLive-MeshExporter/issues", "category": "Import-Export"