Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG

## 1.0.8

### changed

* msbuild version (security update)

## 1.0.7

### added

* better virtual project name, for better error messages

## 1.0.6

### added
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Elsewhere

Create a release
- Create the feature / fix on a new branch
- Update `Version` and `PackageReleaseNotes` in `Runfs.fsproj`
- Update `Version` and `PackageReleaseNotes` in `Runfs.fsproj`, and `CHANGELOG.md`
- Create PR, wait for CI test, merge it
- Switch to main, `git pull`
- `git tag V.V.V && git push --tags`, where `V.V.V` is the version
Expand Down
20 changes: 7 additions & 13 deletions src/Runfs/Runfs.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<!-- General -->
<AssemblyName>Runfs</AssemblyName>
<Version>1.0.7</Version>
<Version>1.0.8</Version>
<Description>"dotnet run app.cs" functionality for F#.</Description>
<Copyright>Copyright 2025 by Martin521</Copyright>
<Authors>Martin521 and contributors</Authors>
Expand All @@ -15,17 +15,11 @@
<PackAsTool>True</PackAsTool>
<ToolCommandName>runfs</ToolCommandName>
<PackageReleaseNotes>
## 1.0.7
## 1.0.8

### added
### changed

* better virtual project name, for better error messages

## 1.0.6

### added

* support for "source", "project" and "dll" reference directives
* msbuild version (security update)
</PackageReleaseNotes>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>
Expand All @@ -47,9 +41,9 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.SystemTextJson" Version="1.4.36" />
<PackageReference Include="FsToolkit.ErrorHandling" Version="5.0.1" />
<PackageReference Include="FsToolkit.ErrorHandling" Version="5.1.0" />

<PackageReference Include="Microsoft.Build" Version="17.14.8" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.9.1" />
<PackageReference Include="Microsoft.Build" Version="17.14.28" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.10.2" />
</ItemGroup>
</Project>