Skip to content

Commit

Permalink
Bump version to 5.0.3-alpha8
Browse files Browse the repository at this point in the history
## [5.0.3-alpha8] - 2021-04-04

### Fixed
- Generate valid code in HasData method

- 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
- 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

### Changed
- Simplify scaffolded classes using `member val`

### Added
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
- Initial release
- F# migrations
- F# scaffolding
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
- Initial release
- F# migrations
- F# scaffolding
[Unreleased]: v5.0.3-alpha7...HEAD
[5.0.3-alpha7]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha7
  • Loading branch information
simon-reynolds committed Apr 4, 2021
1 parent aca3b5e commit 16f8fbe
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 6 deletions.
33 changes: 31 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,39 @@ 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).

## [Unreleased]
## [5.0.3-alpha8] - 2021-04-04

### Fixed
- Generate valid code in HasData method

- 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
- Removed unneeded dependency
- Link to NuGet badges in README.md
- 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
- Removed unneeded dependency
- Link to NuGet badges in README.md

### Changed
- Simplify scaffolded classes using `member val`

### Added
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
- Initial release
- F# migrations
- F# scaffolding
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
- Initial release
- F# migrations
- F# scaffolding
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha7...HEAD
[5.0.3-alpha7]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha7

## [5.0.3-alpha7] - 2021-04-01

### Changed
Expand Down Expand Up @@ -61,5 +89,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release
- F# migrations
- F# scaffolding
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha7...HEAD
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha8...HEAD
[5.0.3-alpha8]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha8
[5.0.3-alpha7]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha7
8 changes: 4 additions & 4 deletions src/EFCore.FSharp/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ open System.Reflection
[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
[<assembly: AssemblyVersionAttribute("5.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-04-01T00:00:00.0000000+01:00")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-04-04T00:00:00.0000000+01:00")>]
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","alpha")>]
[<assembly: AssemblyMetadataAttribute("GitHash","46f9cc1c8e663f567ec63a17f3c02263138ea4df")>]
[<assembly: AssemblyMetadataAttribute("GitHash","aca3b5ec06aedb434dbceef09ee78c8af18dd1da")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
let [<Literal>] AssemblyVersion = "5.0.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-04-01T00:00:00.0000000+01:00"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-04-04T00:00:00.0000000+01:00"
let [<Literal>] AssemblyFileVersion = "5.0.3"
let [<Literal>] AssemblyInformationalVersion = "5.0.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "alpha"
let [<Literal>] AssemblyMetadata_GitHash = "46f9cc1c8e663f567ec63a17f3c02263138ea4df"
let [<Literal>] AssemblyMetadata_GitHash = "aca3b5ec06aedb434dbceef09ee78c8af18dd1da"

0 comments on commit 16f8fbe

Please sign in to comment.