Skip to content

Commit

Permalink
fix: Remove incorrect Dotnet.ReproducibleBuilds ref (#202)
Browse files Browse the repository at this point in the history
* Go behind paket's back
* Bump version to 6.1.4
  • Loading branch information
bartelink committed Dec 13, 2023
1 parent 92b9315 commit 4f330d6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 25 deletions.
6 changes: 5 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### 6.1.3
### 6.1.4
* 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)

### 6.1.3 (Unlisted)
* Add ParseResults.GetResult(expr, unit -> 'T) helper for Catch [#187](https://github.com/fsprojects/Argu/pull/187)
* Use [`Dotnet.ReproducibleBuilds`](https://github.com/dotnet/reproducible-builds) [#174](https://github.com/fsprojects/Argu/pull/174)

### 6.1.2
* Fix Mandatory arguments in nested subcommands. [#116](https://github.com/fsprojects/Argu/issues/116) [@chestercodes](https://github.com/chestercodes)
Expand Down
1 change: 0 additions & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ storage: none

nuget FSharp.Core >= 4.3.2 lowest_matching:true
nuget System.Configuration.ConfigurationManager >= 4.0 lowest_matching:true
nuget DotNet.ReproducibleBuilds

group Tests
source https://api.nuget.org/v3/index.json
Expand Down
19 changes: 0 additions & 19 deletions paket.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,7 @@ STORAGE: NONE
RESTRICTION: == netstandard2.0
NUGET
remote: https://api.nuget.org/v3/index.json
DotNet.ReproducibleBuilds (1.1.1)
Microsoft.SourceLink.AzureRepos.Git (>= 1.1.1)
Microsoft.SourceLink.Bitbucket.Git (>= 1.1.1)
Microsoft.SourceLink.GitHub (>= 1.1.1)
Microsoft.SourceLink.GitLab (>= 1.1.1)
FSharp.Core (4.3.2)
Microsoft.Build.Tasks.Git (8.0)
Microsoft.SourceLink.AzureRepos.Git (8.0)
Microsoft.Build.Tasks.Git (>= 8.0)
Microsoft.SourceLink.Common (>= 8.0)
Microsoft.SourceLink.Bitbucket.Git (8.0)
Microsoft.Build.Tasks.Git (>= 8.0)
Microsoft.SourceLink.Common (>= 8.0)
Microsoft.SourceLink.Common (8.0)
Microsoft.SourceLink.GitHub (1.1.1)
Microsoft.Build.Tasks.Git (>= 1.1.1)
Microsoft.SourceLink.Common (>= 1.1.1)
Microsoft.SourceLink.GitLab (8.0)
Microsoft.Build.Tasks.Git (>= 8.0)
Microsoft.SourceLink.Common (>= 8.0)
System.Buffers (4.5.1)
System.Configuration.ConfigurationManager (4.4)
System.Security.Cryptography.ProtectedData (>= 4.4)
Expand Down
9 changes: 7 additions & 2 deletions src/Argu/Argu.fsproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -21,5 +22,9 @@
<None Include="paket.references" />
<None Include="..\..\resource\logo.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<!-- SourceLink etc -->
<PackageReference Include="DotNet.ReproducibleBuilds" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>
</Project>
3 changes: 1 addition & 2 deletions src/Argu/paket.references
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
FSharp.Core
System.Configuration.ConfigurationManager
DotNet.ReproducibleBuilds
System.Configuration.ConfigurationManager

0 comments on commit 4f330d6

Please sign in to comment.