Skip to content

Commit 1281088

Browse files
Bump version to 5.0.3-beta003
## [5.0.3-beta003] - 2021-05-27 ### Added - Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - #93 - DbSet/IQueryable helpers to deal with EF Core async and nullable methods - [@lucasteles](https://github.com/lucasteles) - #94 - Automatic registration of DesignTimeServices - #86 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience [Unreleased]: v5.0.3-alpha10...HEAD [5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience [Unreleased]: v5.0.3-beta001...HEAD [5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001 [5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10 - Automatic registration of DesignTimeServices - #86 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience [Unreleased]: v5.0.3-alpha10...HEAD [5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience [Unreleased]: 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 [5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10 ### Fixed - Improved code generation for contexts scaffolded from an existing database - #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 - #75 - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #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 - #75 - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #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 - #75 - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #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 - #75 - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #70
1 parent 3ad7c53 commit 1281088

File tree

2 files changed

+60
-6
lines changed

2 files changed

+60
-6
lines changed

CHANGELOG.md

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,65 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [5.0.3-beta003] - 2021-05-27
99

1010
### Added
1111
- Query translation for Option types - [@lucasteles](https://github.com/lucasteles) - https://github.com/efcore/EFCore.FSharp/pull/93
1212
- 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
1313

14+
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
15+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
16+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha10...HEAD
17+
[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10
18+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
19+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta001...HEAD
20+
[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001
21+
[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10
22+
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
23+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
24+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha10...HEAD
25+
[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10
26+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
27+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta002...HEAD
28+
[5.0.3-beta002]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta002
29+
[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001
30+
[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10
31+
32+
### Fixed
33+
- Improved code generation for contexts scaffolded from an existing database - https://github.com/efcore/EFCore.FSharp/pull/89
34+
- Correct issue with InsertData operations and 2D arrays
35+
- Generate valid code in HasData method
36+
- Fix issue with generated DbContext members in scaffolded code
37+
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
38+
- Foreign Key constraints now created correctly
39+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
40+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
41+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
42+
- Correct issue with InsertData operations and 2D arrays
43+
- Generate valid code in HasData method
44+
- Fix issue with generated DbContext members in scaffolded code
45+
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
46+
- Foreign Key constraints now created correctly
47+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
48+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
49+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
50+
- Correct issue with InsertData operations and 2D arrays
51+
- Generate valid code in HasData method
52+
- Fix issue with generated DbContext members in scaffolded code
53+
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
54+
- Foreign Key constraints now created correctly
55+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
56+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
57+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
58+
- Correct issue with InsertData operations and 2D arrays
59+
- Generate valid code in HasData method
60+
- Fix issue with generated DbContext members in scaffolded code
61+
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
62+
- Foreign Key constraints now created correctly
63+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
64+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
65+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
66+
1467
## [5.0.3-beta002] - 2021-05-12
1568

1669
### Fixed
@@ -76,7 +129,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
76129

77130
### Added
78131
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
79-
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta002...HEAD
132+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-beta003...HEAD
133+
[5.0.3-beta003]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta003
80134
[5.0.3-beta002]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta002
81135
[5.0.3-beta001]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-beta001
82136
[5.0.3-alpha10]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha10

src/EFCore.FSharp/AssemblyInfo.fs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ open System.Reflection
55
[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
66
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
77
[<assembly: AssemblyVersionAttribute("5.0.3")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-05-12T00:00:00.0000000+01:00")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-05-27T00:00:00.0000000+01:00")>]
99
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
1010
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","beta")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","b43d287c873771ad599f7f43242e96aeff72f6ed")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","3ad7c535e8aa61a0c9ec972d0a767c60e1511020")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
1717
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
1818
let [<Literal>] AssemblyVersion = "5.0.3"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-05-12T00:00:00.0000000+01:00"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-05-27T00:00:00.0000000+01:00"
2020
let [<Literal>] AssemblyFileVersion = "5.0.3"
2121
let [<Literal>] AssemblyInformationalVersion = "5.0.3"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "beta"
23-
let [<Literal>] AssemblyMetadata_GitHash = "b43d287c873771ad599f7f43242e96aeff72f6ed"
23+
let [<Literal>] AssemblyMetadata_GitHash = "3ad7c535e8aa61a0c9ec972d0a767c60e1511020"

0 commit comments

Comments
 (0)