Skip to content

Commit 0dd0bc8

Browse files
authored
msbuild version (security update) (#8)
1 parent 2710bb4 commit 0dd0bc8

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## 1.0.8
4+
5+
### changed
6+
7+
* msbuild version (security update)
8+
9+
## 1.0.7
10+
11+
### added
12+
13+
* better virtual project name, for better error messages
14+
315
## 1.0.6
416

517
### added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Elsewhere
7575

7676
Create a release
7777
- Create the feature / fix on a new branch
78-
- Update `Version` and `PackageReleaseNotes` in `Runfs.fsproj`
78+
- Update `Version` and `PackageReleaseNotes` in `Runfs.fsproj`, and `CHANGELOG.md`
7979
- Create PR, wait for CI test, merge it
8080
- Switch to main, `git pull`
8181
- `git tag V.V.V && git push --tags`, where `V.V.V` is the version

src/Runfs/Runfs.fsproj

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<!-- General -->
44
<AssemblyName>Runfs</AssemblyName>
5-
<Version>1.0.7</Version>
5+
<Version>1.0.8</Version>
66
<Description>"dotnet run app.cs" functionality for F#.</Description>
77
<Copyright>Copyright 2025 by Martin521</Copyright>
88
<Authors>Martin521 and contributors</Authors>
@@ -15,17 +15,11 @@
1515
<PackAsTool>True</PackAsTool>
1616
<ToolCommandName>runfs</ToolCommandName>
1717
<PackageReleaseNotes>
18-
## 1.0.7
18+
## 1.0.8
1919

20-
### added
20+
### changed
2121

22-
* better virtual project name, for better error messages
23-
24-
## 1.0.6
25-
26-
### added
27-
28-
* support for "source", "project" and "dll" reference directives
22+
* msbuild version (security update)
2923
</PackageReleaseNotes>
3024
<PublishRepositoryUrl>true</PublishRepositoryUrl>
3125
<PackageIcon>
@@ -47,9 +41,9 @@
4741
</ItemGroup>
4842
<ItemGroup>
4943
<PackageReference Include="FSharp.SystemTextJson" Version="1.4.36" />
50-
<PackageReference Include="FsToolkit.ErrorHandling" Version="5.0.1" />
44+
<PackageReference Include="FsToolkit.ErrorHandling" Version="5.1.0" />
5145

52-
<PackageReference Include="Microsoft.Build" Version="17.14.8" ExcludeAssets="runtime" />
53-
<PackageReference Include="Microsoft.Build.Locator" Version="1.9.1" />
46+
<PackageReference Include="Microsoft.Build" Version="17.14.28" ExcludeAssets="runtime" />
47+
<PackageReference Include="Microsoft.Build.Locator" Version="1.10.2" />
5448
</ItemGroup>
5549
</Project>

0 commit comments

Comments
 (0)