diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 01ab343..6d58ae8 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -20,11 +20,20 @@ jobs:
with:
dotnet-version: 6.0.x
- - name: Install Mod Dependencies
- run: dotnet restore .vscode
+ - name: Build Mod for 1.3
+ env:
+ RimWorldVersion: 1.3
+ run: dotnet build .vscode --configuration Release
+
+ - name: Build Mod for 1.4
+ env:
+ RimWorldVersion: 1.4
+ run: dotnet build .vscode --configuration Release
- - name: Build Mod
- run: dotnet build .vscode --configuration Release --no-restore
+ - name: Build Mod for 1.5
+ env:
+ RimWorldVersion: 1.5
+ run: dotnet build .vscode --configuration Release
- name: Upload Mod Artifacts
uses: actions/upload-artifact@v3
@@ -32,7 +41,10 @@ jobs:
name: FarmingHysteresis-Release
path: |
About/
+ 1.3/
1.4/
+ 1.5/
+ Common/
LICENSE
LICENSE.Apache-2.0
LICENSE.MIT
@@ -40,7 +52,6 @@ jobs:
CHANGELOG.md
!**/.*
!About/Preview.pdn
- !1.4/Assemblies/0Harmony.dll
package:
name: Release
diff --git a/.vscode/mod.csproj b/.vscode/mod.csproj
index e87365c..36376a0 100644
--- a/.vscode/mod.csproj
+++ b/.vscode/mod.csproj
@@ -8,7 +8,7 @@
FarmingHysteresis
FarmingHysteresis
- 0.6.0
+ 0.6.1
false
diff --git a/About/About.xml b/About/About.xml
index f236ef1..7b415e0 100644
--- a/About/About.xml
+++ b/About/About.xml
@@ -19,7 +19,7 @@ When the amount of stored product goes below the lower bound, sowing and/or cutt
<size=24>Version</size>
-This is version 0.6.0 for RimWorld 1.3-1.5
+This is version 0.6.1 for RimWorld 1.3, 1.4 and 1.5
diff --git a/About/Manifest.xml b/About/Manifest.xml
index 7ffad05..f857b97 100644
--- a/About/Manifest.xml
+++ b/About/Manifest.xml
@@ -1,7 +1,7 @@
ilyvion.FarmingHysteresis
- 0.6.0
+ 0.6.1
brrainz.harmony
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5530c57..f58f89b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+
+## [0.6.1] - 2024-04-24
### Added
- Added support for versions 1.3 and 1.5.
@@ -82,6 +84,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- First implementation of the mod.
[Unreleased]: https://github.com/ilyvion/farming-hysteresis/compare/v0.6.0...HEAD
+[0.6.1]: https://github.com/ilyvion/farming-hysteresis/compare/v0.6.0...v0.6.1
[0.6.0]: https://github.com/ilyvion/farming-hysteresis/compare/v0.5.1...v0.6.0
[0.5.1]: https://github.com/ilyvion/farming-hysteresis/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/ilyvion/farming-hysteresis/compare/v0.4.1...v0.5.0