Skip to content

Commit 10b055a

Browse files
Bump version to 5.0.3-alpha7
## [5.0.3-alpha7] - 2021-04-01 ### Changed - Simplify scaffolded classes using `member val` ### Fixed - 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 - Removed unneeded dependency - Link to NuGet badges in README.md ### Added - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience - Initial release - F# migrations - F# scaffolding
1 parent 46f9cc1 commit 10b055a

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-alpha7] - 2021-04-01
99

1010
### Changed
1111
- Simplify scaffolded classes using `member val`
@@ -14,6 +14,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- Resolved issue with migrations have a missing unit arg to the "Up" method if no changes in model
1515
- Foreign Key constraints now created correctly
1616

17+
- Fix indentation issue when table has constraints - https://github.com/efcore/EFCore.FSharp/pull/75
18+
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
19+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
20+
- Removed unneeded dependency
21+
- Link to NuGet badges in README.md
22+
23+
### Added
24+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
25+
- Initial release
26+
- F# migrations
27+
- F# scaffolding
28+
1729
## [5.0.3-alpha6] - 2021-04-01
1830

1931
### Fixed
@@ -44,3 +56,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4456
- Initial release
4557
- F# migrations
4658
- F# scaffolding
59+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha7...HEAD
60+
[5.0.3-alpha7]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha7

src/EFCore.FSharp/AssemblyInfo.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open System.Reflection
99
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
1010
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","alpha")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","1d8574a68a6e22e17fcbc8dac1cb2db07ecb7796")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","46f9cc1c8e663f567ec63a17f3c02263138ea4df")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
@@ -20,4 +20,4 @@ module internal AssemblyVersionInformation =
2020
let [<Literal>] AssemblyFileVersion = "5.0.3"
2121
let [<Literal>] AssemblyInformationalVersion = "5.0.3"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "alpha"
23-
let [<Literal>] AssemblyMetadata_GitHash = "1d8574a68a6e22e17fcbc8dac1cb2db07ecb7796"
23+
let [<Literal>] AssemblyMetadata_GitHash = "46f9cc1c8e663f567ec63a17f3c02263138ea4df"

0 commit comments

Comments
 (0)