Skip to content

Commit 4f330d6

Browse files
authored
fix: Remove incorrect Dotnet.ReproducibleBuilds ref (#202)
* Go behind paket's back * Bump version to 6.1.4
1 parent 92b9315 commit 4f330d6

File tree

5 files changed

+13
-25
lines changed

5 files changed

+13
-25
lines changed

RELEASE_NOTES.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
### 6.1.3
1+
### 6.1.4
2+
* Fix: remove incorrect `ReproducibleBuilds` reference [introduced in `6.1.3`](https://github.com/fsprojects/Argu/pull/174) [#202](https://github.com/fsprojects/Argu/pull/202)
3+
4+
### 6.1.3 (Unlisted)
25
* Add ParseResults.GetResult(expr, unit -> 'T) helper for Catch [#187](https://github.com/fsprojects/Argu/pull/187)
6+
* Use [`Dotnet.ReproducibleBuilds`](https://github.com/dotnet/reproducible-builds) [#174](https://github.com/fsprojects/Argu/pull/174)
37

48
### 6.1.2
59
* Fix Mandatory arguments in nested subcommands. [#116](https://github.com/fsprojects/Argu/issues/116) [@chestercodes](https://github.com/chestercodes)

paket.dependencies

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ storage: none
44

55
nuget FSharp.Core >= 4.3.2 lowest_matching:true
66
nuget System.Configuration.ConfigurationManager >= 4.0 lowest_matching:true
7-
nuget DotNet.ReproducibleBuilds
87

98
group Tests
109
source https://api.nuget.org/v3/index.json

paket.lock

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,7 @@ STORAGE: NONE
22
RESTRICTION: == netstandard2.0
33
NUGET
44
remote: https://api.nuget.org/v3/index.json
5-
DotNet.ReproducibleBuilds (1.1.1)
6-
Microsoft.SourceLink.AzureRepos.Git (>= 1.1.1)
7-
Microsoft.SourceLink.Bitbucket.Git (>= 1.1.1)
8-
Microsoft.SourceLink.GitHub (>= 1.1.1)
9-
Microsoft.SourceLink.GitLab (>= 1.1.1)
105
FSharp.Core (4.3.2)
11-
Microsoft.Build.Tasks.Git (8.0)
12-
Microsoft.SourceLink.AzureRepos.Git (8.0)
13-
Microsoft.Build.Tasks.Git (>= 8.0)
14-
Microsoft.SourceLink.Common (>= 8.0)
15-
Microsoft.SourceLink.Bitbucket.Git (8.0)
16-
Microsoft.Build.Tasks.Git (>= 8.0)
17-
Microsoft.SourceLink.Common (>= 8.0)
18-
Microsoft.SourceLink.Common (8.0)
19-
Microsoft.SourceLink.GitHub (1.1.1)
20-
Microsoft.Build.Tasks.Git (>= 1.1.1)
21-
Microsoft.SourceLink.Common (>= 1.1.1)
22-
Microsoft.SourceLink.GitLab (8.0)
23-
Microsoft.Build.Tasks.Git (>= 8.0)
24-
Microsoft.SourceLink.Common (>= 8.0)
256
System.Buffers (4.5.1)
267
System.Configuration.ConfigurationManager (4.4)
278
System.Security.Cryptography.ProtectedData (>= 4.4)

src/Argu/Argu.fsproj

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.NET.Sdk">
23
<PropertyGroup>
34
<TargetFramework>netstandard2.0</TargetFramework>
45
<GenerateDocumentationFile>true</GenerateDocumentationFile>
@@ -21,5 +22,9 @@
2122
<None Include="paket.references" />
2223
<None Include="..\..\resource\logo.png" Pack="true" PackagePath="" />
2324
</ItemGroup>
25+
<ItemGroup>
26+
<!-- SourceLink etc -->
27+
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" />
28+
</ItemGroup>
2429
<Import Project="..\..\.paket\Paket.Restore.targets" />
25-
</Project>
30+
</Project>

src/Argu/paket.references

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
FSharp.Core
2-
System.Configuration.ConfigurationManager
3-
DotNet.ReproducibleBuilds
2+
System.Configuration.ConfigurationManager

0 commit comments

Comments
 (0)