Skip to content

Commit 2a29738

Browse files
authored
Merge pull request #222 from MoiraeSoftware/repo-assist/release-v0.8.5-24c77a84e9be2d82
[Repo Assist] Release v0.8.5: update CHANGELOG and bump version
2 parents fdcad40 + 52874e0 commit 2a29738

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,3 +57,7 @@ jobs:
5757
tag: ${{ github.ref }}
5858
overwrite: true
5959
file_glob: true
60+
- name: Push to NuGet
61+
run: dotnet nuget push bin/nupkg/*.nupkg --api-key $NUGET_API_KEY --source https://api.nuget.org/v3/index.json --skip-duplicate
62+
env:
63+
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
9+
## [0.8.5]
810
### Fixed
911
- Custom plugins built against a different target framework than the Myriad tool no longer fail with `System.Reflection.ReflectionTypeLoadException`. The plugin loader now sets `PreferSharedTypes = true` so that assemblies already loaded by the host (such as `FSharp.Core` and `Fantomas.FCS`) are shared with the plugin instead of being loaded again from the plugin's output directory. Type load failures are also handled gracefully so that generators that do load are not lost.
1012

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<GitHome>https://github.com/$(gitOwner)</GitHome>
66
<GitUrl>$(gitHome)/$(gitName)</GitUrl>
77
<NupkgsDir>$([System.IO.Path]::GetFullPath("$(MSBuildThisFileDirectory)/bin/nupkg"))</NupkgsDir>
8-
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.8.4</VersionPrefix>
8+
<VersionPrefix Condition=" '$(VersionPrefix)' == '' ">0.8.5</VersionPrefix>
99
<Version Condition=" '$(Version)' == '' ">$(VersionPrefix)$(VersionSuffix)</Version>
1010
<!-- pack stuff -->
1111
<TargetFrameworks>net9.0</TargetFrameworks>

0 commit comments

Comments
 (0)