File tree Expand file tree Collapse file tree 9 files changed +31
-38
lines changed
Expand file tree Collapse file tree 9 files changed +31
-38
lines changed Original file line number Diff line number Diff line change 33 "isRoot" : true ,
44 "tools" : {
55 "paket" : {
6- "version" : " 9.0.0 " ,
6+ "version" : " 9.0.2 " ,
77 "commands" : [
88 " paket"
99 ]
10+ },
11+ "fantomas" : {
12+ "version" : " 6.2.3" ,
13+ "commands" : [
14+ " fantomas"
15+ ]
1016 }
1117 }
1218}
Original file line number Diff line number Diff line change 1+ ### 0.12.3-beta
2+ * Removed erroneous ` Dotnet.Reproduciblebuilds ` dependency [ #75 ] ( https://github.com/fsprojects/FSharp.AWS.DynamoDB/pull/75 )
13### 0.12.2-beta
24* (breaking) Revised multi-table transaction API (thanks @bartelink )
35
Original file line number Diff line number Diff line change 11{
22 "sdk" : {
3- "version" : " 9.0.100 " ,
3+ "version" : " 9.0.101 " ,
44 "rollForward" : " latestMajor"
55 }
66}
Original file line number Diff line number Diff line change @@ -3,11 +3,18 @@ source https://api.nuget.org/v3/index.json
33storage: none
44framework: net90, netstandard20, netstandard21
55
6+ # copy_local: true because this is a build-time dependency only
7+ nuget Dotnet.ReproducibleBuilds copy_local: true
8+
69nuget Unquote ~> 6.1.0
7- nuget FSharp.Core >= 4.7.2 lowest_matching: true
10+
11+ # NOTE re `content: false`
12+ # Workaround for malformed FSharp.Core packages https://github.com/dotnet/fsharp/issues/12706 via https://github.com/fsprojects/Paket/issues/4149
13+ # Removal triggers issues in dotnet publish, e.g. for Lambda projects
14+ # Also avoids Rider search finding stuff in FSharp.Core.xml
15+ nuget FSharp.Core >= 4.7.2 content: false, lowest_matching: true
816
917nuget AWSSDK.DynamoDBv2 ~> 3.7.5
10- nuget DotNet.ReproducibleBuilds
1118nuget System.Diagnostics.DiagnosticSource >= 6.0.0
1219github eiriktsarpalis/TypeShape:10.0.0 src/TypeShape/TypeShape.fs
1320
Original file line number Diff line number Diff line change @@ -2,11 +2,11 @@ STORAGE: NONE
22RESTRICTION: || (== net9.0) (== netstandard2.0) (== netstandard2.1)
33NUGET
44 remote: https://api.nuget.org/v3/index.json
5- AWSSDK.Core (3.7.400.57 )
5+ AWSSDK.Core (3.7.400.64 )
66 Microsoft.Bcl.AsyncInterfaces (>= 1.1) - restriction: || (&& (== net9.0) (< netcoreapp3.1)) (== netstandard2.0) (== netstandard2.1)
7- AWSSDK.DynamoDBv2 (3.7.403.7 )
8- AWSSDK.Core (>= 3.7.400.57 < 4.0)
9- DotNet.ReproducibleBuilds (1.2.25)
7+ AWSSDK.DynamoDBv2 (3.7.404.5 )
8+ AWSSDK.Core (>= 3.7.400.64 < 4.0)
9+ DotNet.ReproducibleBuilds (1.2.25) - copy_local: true
1010 FSharp.Core (4.7.2)
1111 Microsoft.Bcl.AsyncInterfaces (9.0) - restriction: || (&& (== net9.0) (< netcoreapp3.1)) (== netstandard2.0) (== netstandard2.1)
1212 System.Threading.Tasks.Extensions (>= 4.5.4) - restriction: || (&& (== net9.0) (>= net462)) (&& (== net9.0) (< netstandard2.1)) (== netstandard2.0) (&& (== netstandard2.1) (>= net462))
5050 xunit.assert (>= 2.9.2)
5151 xunit.core (2.9.2)
5252 xunit.abstractions (2.0.3)
53- xunit.analyzers (1.17 )
53+ xunit.analyzers (1.18 )
5454 xunit.assert (2.9.2)
5555 xunit.core (2.9.2)
5656 xunit.extensibility.core (2.9.2)
5959 xunit.abstractions (>= 2.0.3)
6060 xunit.extensibility.execution (2.9.2)
6161 xunit.extensibility.core (2.9.2)
62- xunit.runner.visualstudio (2.8.2 )
62+ xunit.runner.visualstudio (3.0 )
Original file line number Diff line number Diff line change @@ -6,15 +6,15 @@ open System.Runtime.CompilerServices
66[<assembly: AssemblyTitleAttribute( " FSharp.AWS.DynamoDB" ) >]
77[<assembly: AssemblyProductAttribute( " FSharp.AWS.DynamoDB" ) >]
88[<assembly: AssemblyDescriptionAttribute( " An F# wrapper over the standard Amazon.DynamoDB library" ) >]
9- [<assembly: AssemblyVersionAttribute( " 0.12.2 " ) >]
10- [<assembly: AssemblyFileVersionAttribute( " 0.12.2 " ) >]
9+ [<assembly: AssemblyVersionAttribute( " 0.12.3 " ) >]
10+ [<assembly: AssemblyFileVersionAttribute( " 0.12.3 " ) >]
1111[<assembly: InternalsVisibleToAttribute( " FSharp.AWS.DynamoDB.Tests" ) >]
1212do ()
1313
1414module internal AssemblyVersionInformation =
1515 let [<Literal>] AssemblyTitle = " FSharp.AWS.DynamoDB"
1616 let [<Literal>] AssemblyProduct = " FSharp.AWS.DynamoDB"
1717 let [<Literal>] AssemblyDescription = " An F# wrapper over the standard Amazon.DynamoDB library"
18- let [<Literal>] AssemblyVersion = " 0.12.2 "
19- let [<Literal>] AssemblyFileVersion = " 0.12.2 "
18+ let [<Literal>] AssemblyVersion = " 0.12.3 "
19+ let [<Literal>] AssemblyFileVersion = " 0.12.3 "
2020 let [<Literal>] InternalsVisibleTo = " FSharp.AWS.DynamoDB.Tests"
Original file line number Diff line number Diff line change 3939 <Compile Include =" TableContext.fs" />
4040 <Compile Include =" Extensions.fs" />
4141 <None Include =" Script.fsx" />
42- <None Include =" paket.template" />
4342 </ItemGroup >
4443 <Import Project =" ..\..\.paket\Paket.Restore.targets" />
4544</Project >
Original file line number Diff line number Diff line change 1- Unquote
21AWSSDK.DynamoDBv2
32DotNet.ReproducibleBuilds
3+ FSharp.Core
4+ Unquote
45System.Diagnostics.DiagnosticSource
56File: TypeShape.fs TypeShape
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments