Skip to content

Commit 5f2889a

Browse files
committed
Release 0.0.5
Several non-breaking bugfixes backported from the next development version ### Docs - Fixed git submodule example to work even for tagged releases (#49) ### Build - BACKPORT: Fix `KSP_VERSION_MAX` getting mangled when using an existing version file (#64) ### Actions - BACKPORT: KSPBT actions used in reusable workflows are now pinned with each tag, instead of using actions from `main`. All calls to reusable workflows should be pinned to a tag to ensure the correct actions are being used. (#21)
1 parent 3d64275 commit 5f2889a

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,17 +45,17 @@ jobs:
4545
submodules: true
4646

4747
# Install CKAN and set up an instance
48-
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
48+
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
4949
if: ${{ (inputs.use-ckan && inputs.use-msbuild) || inputs.dependency-identifiers }}
5050

5151
# Install any listed CKAN dependencies
52-
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
52+
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
5353
if: ${{ inputs.dependency-identifiers }}
5454
with:
5555
dependency-identifiers: ${{ inputs.dependency-identifiers }}
5656

5757
# Compile the mod
58-
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
58+
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
5959
if: ${{ inputs.use-msbuild }}
6060
with:
6161
build-configuration: ${{ inputs.build-configuration }}
@@ -64,7 +64,7 @@ jobs:
6464
solution-file-path: ${{ inputs.solution-file-path }}
6565

6666
# Assemble the mod into a release package and upload it as an artifact
67-
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
67+
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
6868
with:
6969
artifacts: ${{ inputs.artifacts }}
7070
output-file-name: ${{ github.event.repository.name }}-${{ inputs.build-configuration }}

.github/workflows/create-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
submodules: true
6565

6666
- name: update-version
67-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
67+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
6868
with:
6969
version-string: ${{ inputs.version-string }}
7070
template-extension: ${{ inputs.version-template-extension }}
@@ -81,18 +81,18 @@ jobs:
8181
git tag -f -a "$VERSION_STRING" -m "$VERSION_STRING"
8282
8383
# Install CKAN and set up an instance
84-
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
84+
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
8585
if: ${{ (inputs.use-ckan && inputs.use-msbuild) || inputs.dependency-identifiers }}
8686

8787
# Install any listed CKAN dependencies
88-
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
88+
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
8989
if: ${{ inputs.dependency-identifiers }}
9090
with:
9191
dependency-identifiers: ${{ inputs.dependency-identifiers }}
9292

9393
- name: compile
9494
if: ${{ inputs.use-msbuild }}
95-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
95+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
9696
with:
9797
build-configuration: ${{ inputs.build-configuration }}
9898
ksp-zip-url: ${{ inputs.ksp-zip-url }}
@@ -101,7 +101,7 @@ jobs:
101101

102102
- name: assemble-release
103103
id: assemble-release
104-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
104+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
105105
with:
106106
artifacts: ${{ inputs.artifacts }}
107107
output-file-name: ${{ github.event.repository.name }}-${{ env.VERSION_STRING }}

.github/workflows/publish-to-spacedock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
- name: get-release-info
3333
id: get-release-info
34-
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].4
34+
uses: KSPModdingLibs/KSPBuildTools/.github/actions/[email protected].5
3535
with:
3636
release-tag: ${{ inputs.release-tag }}
3737

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
All notable changes to this project will be documented in this file
44

5-
## Unreleased
5+
## 0.0.5 - 2025-11-07
66

77
Several non-breaking bugfixes backported from the next development version
88

0 commit comments

Comments
 (0)