Skip to content

Commit

Permalink
Prepare for 0.6.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ilyvion committed Apr 1, 2024
1 parent f57aa5d commit bebaf23
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 8 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,27 +20,38 @@ 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
with:
name: FarmingHysteresis-Release
path: |
About/
1.3/
1.4/
1.5/
Common/
LICENSE
LICENSE.Apache-2.0
LICENSE.MIT
README.md
CHANGELOG.md
!**/.*
!About/Preview.pdn
!1.4/Assemblies/0Harmony.dll
package:
name: Release
Expand Down
2 changes: 1 addition & 1 deletion .vscode/mod.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

<RootNamespace>FarmingHysteresis</RootNamespace>
<AssemblyName>FarmingHysteresis</AssemblyName>
<VersionPrefix>0.6.0</VersionPrefix>
<VersionPrefix>0.6.1</VersionPrefix>

<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion About/About.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ When the amount of stored product goes below the lower bound, sowing and/or cutt

&lt;size=24&gt;Version&lt;/size&gt;

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

</description>
<supportedVersions>
Expand Down
2 changes: 1 addition & 1 deletion About/Manifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Manifest>
<identifier>ilyvion.FarmingHysteresis</identifier>
<version>0.6.0</version>
<version>0.6.1</version>
<dependencies>
<li>brrainz.harmony</li>
</dependencies>
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit bebaf23

Please sign in to comment.