Skip to content

Commit

Permalink
Bump version to 6.0.0
Browse files Browse the repository at this point in the history
## [6.0.0] - 2021-11-09

### Added
- Support EF Core 6.0
- Many-to-Many relationships now scaffolded without joining table
- Temporal tables in SQL Server supported
  • Loading branch information
simon-reynolds committed Nov 9, 2021
1 parent 08012ce commit ae267d1
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 32 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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).

## [Unrelease]
## [6.0.0] - 2021-11-09

### Added
- Support EF Core 6.0
Expand All @@ -24,3 +24,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- 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/v6.0.0...HEAD
[6.0.0]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3...v6.0.0
45 changes: 14 additions & 31 deletions src/EFCore.FSharp/AssemblyInfo.fs
Original file line number Diff line number Diff line change
@@ -1,40 +1,23 @@
// Auto-Generated by FAKE; do not edit
namespace System

open System.Reflection

[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
[<assembly: AssemblyVersionAttribute("5.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate", "2021-08-17T00:00:00.0000000+01:00")>]
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel", "beta")>]
[<assembly: AssemblyMetadataAttribute("GitHash", "640a596f45adf4a9c406461f1422db072ce9bb4b")>]
[<assembly: AssemblyVersionAttribute("6.0.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-09T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.0")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","08012ceb9901dbc29a12b7745c94f406db8b1fc3")>]
do ()

module internal AssemblyVersionInformation =
[<Literal>]
let AssemblyTitle = "EFCore.FSharp"

[<Literal>]
let AssemblyProduct = "EFCore.FSharp"

[<Literal>]
let AssemblyVersion = "5.0.3"

[<Literal>]
let AssemblyMetadata_ReleaseDate = "2021-08-17T00:00:00.0000000+01:00"

[<Literal>]
let AssemblyFileVersion = "5.0.3"

[<Literal>]
let AssemblyInformationalVersion = "5.0.3"

[<Literal>]
let AssemblyMetadata_ReleaseChannel = "beta"

[<Literal>]
let AssemblyMetadata_GitHash =
"640a596f45adf4a9c406461f1422db072ce9bb4b"
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
let [<Literal>] AssemblyVersion = "6.0.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-09T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "6.0.0"
let [<Literal>] AssemblyInformationalVersion = "6.0.0"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "08012ceb9901dbc29a12b7745c94f406db8b1fc3"

0 comments on commit ae267d1

Please sign in to comment.