File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
tests/SwaggerProvider.ProviderTests/v2 Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 1+ #### 2.3.1 - May 13, 2025
2+
3+ - Performance improvement: ProvidedTypes update to the most recent version (#267 )
4+
15#### 2.3.0 - May 10, 2025
26
37- Added .NET 8 runtime, updated Microsoft.OpenApi (#265 )
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ open System.Reflection
55[<assembly: AssemblyTitleAttribute( " SwaggerProvider" ) >]
66[<assembly: AssemblyProductAttribute( " SwaggerProvider" ) >]
77[<assembly: AssemblyDescriptionAttribute( " F# Type Provider for Swagger & Open API" ) >]
8- [<assembly: AssemblyVersionAttribute( " 2.3.0 " ) >]
9- [<assembly: AssemblyFileVersionAttribute( " 2.3.0 " ) >]
8+ [<assembly: AssemblyVersionAttribute( " 2.3.1 " ) >]
9+ [<assembly: AssemblyFileVersionAttribute( " 2.3.1 " ) >]
1010do ()
1111
1212module internal AssemblyVersionInformation =
1313 let [<Literal>] AssemblyTitle = " SwaggerProvider"
1414 let [<Literal>] AssemblyProduct = " SwaggerProvider"
1515 let [<Literal>] AssemblyDescription = " F# Type Provider for Swagger & Open API"
16- let [<Literal>] AssemblyVersion = " 2.3.0 "
17- let [<Literal>] AssemblyFileVersion = " 2.3.0 "
16+ let [<Literal>] AssemblyVersion = " 2.3.1 "
17+ let [<Literal>] AssemblyFileVersion = " 2.3.1 "
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ let ``Instantiate provided objects``() =
4545let ``throw custom exceptions from async`` () =
4646 task {
4747 try
48- let! _ = store.GetPetById( 242 L )
48+ let! _ = store.GetPetById( 253 L )
4949 failwith " Call should fail"
5050 with : ? System .AggregateException as aex ->
5151 match aex.InnerException with
You can’t perform that action at this time.
0 commit comments