From 52dc2451f9677543828d29f85d0ce24b1136e38b Mon Sep 17 00:00:00 2001 From: Simon Reynolds Date: Mon, 9 Aug 2021 18:52:05 +0100 Subject: [PATCH] Bump version to 5.0.3-beta005 ## [5.0.3-beta005] - 2021-08-09 ### Fixed - Fix formatting of Nullable parameters - [@LiteracyFanatic](https://github.com/LiteracyFanatic) - https://github.com/efcore/EFCore.FSharp/pull/106 - Handle nullablility correctly in snapshot generation - https://github.com/efcore/EFCore.FSharp/pull/107 - Issues with scaffolded code - Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89 - Correct issue with InsertData operations and 2D arrays - Generate valid code in HasData method - Fix issue with generated DbContext members in scaffolded code - Resolved issue with migrations have a missing unit arg to the Up method if no changes in model - Foreign Key constraints now created correctly - Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 - Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 - Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 ### Added - Single case union support - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/98 - Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93 - DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94 - Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience --- CHANGELOG.md | 94 +++++-------------------------- src/EFCore.FSharp/AssemblyInfo.fs | 8 +-- 2 files changed, 18 insertions(+), 84 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f6e232..aab5c46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,30 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [5.0.3-beta004] - 2021-06-16 - -### Added -- Single case union support - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/98 - -- Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93 -- DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94 -- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 -- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta002...HEAD -[5.0.3-beta002]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta002 -[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001 -- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 -- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta001...HEAD -[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001 -- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 -- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha10...HEAD -[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10 +## [5.0.3-beta005] - 2021-08-09 ### Fixed -- Issues with scaffolded code +- Fix formatting of Nullable parameters - [@LiteracyFanatic](https://github.com/LiteracyFanatic) - https://github.com/efcore/EFCore.FSharp/pull/106 +- Handle nullablility correctly in snapshot generation - https://github.com/efcore/EFCore.FSharp/pull/107 +- Issues with scaffolded code - Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89 - Correct issue with InsertData operations and 2D arrays - Generate valid code in HasData method @@ -38,77 +21,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 - Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 - Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 -- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89 -- Correct issue with InsertData operations and 2D arrays -- Generate valid code in HasData method -- Fix issue with generated DbContext members in scaffolded code -- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model -- Foreign Key constraints now created correctly -- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 -- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 -- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 -- Correct issue with InsertData operations and 2D arrays -- Generate valid code in HasData method -- Fix issue with generated DbContext members in scaffolded code -- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model -- Foreign Key constraints now created correctly -- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 -- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 -- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 - -## [5.0.3-beta003] - 2021-05-27 ### Added +- Single case union support - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/98 - Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93 - DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94 - - Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta002...HEAD -[5.0.3-beta002]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta002 -[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001 -### Fixed -- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89 -- Correct issue with InsertData operations and 2D arrays -- Generate valid code in HasData method -- Fix issue with generated DbContext members in scaffolded code -- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model -- Foreign Key constraints now created correctly -- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 -- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 -- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 - -## [5.0.3-beta002] - 2021-05-12 - -### Fixed -- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89 - -- Correct issue with InsertData operations and 2D arrays -- Generate valid code in HasData method -- Fix issue with generated DbContext members in scaffolded code -- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model -- Foreign Key constraints now created correctly -- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 -- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 -- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 +## [5.0.3-beta004] - 2021-06-16 ### Added -- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 -- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta001...HEAD -[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001 - -## [5.0.3-beta001] - 2021-05-08 +- Single case union support - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/98 -### Added +- Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93 +- DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/94 - Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86 - - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha10...HEAD -[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10 ### Fixed +- Issues with scaffolded code + +- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89 - Correct issue with InsertData operations and 2D arrays - Generate valid code in HasData method - Fix issue with generated DbContext members in scaffolded code @@ -117,5 +51,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75 - Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72 - Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70 -[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta004...HEAD -[5.0.3-beta004]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta004 +[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta005...HEAD +[5.0.3-beta005]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta005 diff --git a/src/EFCore.FSharp/AssemblyInfo.fs b/src/EFCore.FSharp/AssemblyInfo.fs index fe5202d..03b49a2 100644 --- a/src/EFCore.FSharp/AssemblyInfo.fs +++ b/src/EFCore.FSharp/AssemblyInfo.fs @@ -5,19 +5,19 @@ open System.Reflection [] [] [] -[] +[] [] [] [] -[] +[] do () module internal AssemblyVersionInformation = let [] AssemblyTitle = "EFCore.FSharp" let [] AssemblyProduct = "EFCore.FSharp" let [] AssemblyVersion = "5.0.3" - let [] AssemblyMetadata_ReleaseDate = "2021-06-16T00:00:00.0000000+01:00" + let [] AssemblyMetadata_ReleaseDate = "2021-08-09T00:00:00.0000000+01:00" let [] AssemblyFileVersion = "5.0.3" let [] AssemblyInformationalVersion = "5.0.3" let [] AssemblyMetadata_ReleaseChannel = "beta" - let [] AssemblyMetadata_GitHash = "15ea3ede3c195bd5ce1eca4eb0c8569e7374d583" + let [] AssemblyMetadata_GitHash = "eb2814661d2e6812f74a6540696e04d0d2631e11"