Skip to content

Commit ea29aed

Browse files
Bump version to 6.0.1
## [6.0.1] - 2021-11-10 ### Fixed - Issue with generated records using Many-to-Many joins
1 parent afa5eb7 commit ea29aed

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
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+
## [6.0.1] - 2021-11-10
99

1010
### Fixed
1111
- Issue with generated records using Many-to-Many joins
@@ -29,5 +29,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2929
- 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
3030
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
3131
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
32-
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.0...HEAD
32+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.1...HEAD
33+
[6.0.1]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.0...v6.0.1
3334
[6.0.0]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3...v6.0.0

src/EFCore.FSharp/AssemblyInfo.fs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ open System.Reflection
44

55
[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
66
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
7-
[<assembly: AssemblyVersionAttribute("6.0.0")>]
8-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-09T00:00:00.0000000+00:00")>]
9-
[<assembly: AssemblyFileVersionAttribute("6.0.0")>]
10-
[<assembly: AssemblyInformationalVersionAttribute("6.0.0")>]
7+
[<assembly: AssemblyVersionAttribute("6.0.1")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-10T00:00:00.0000000+00:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("6.0.1")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("6.0.1")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","08012ceb9901dbc29a12b7745c94f406db8b1fc3")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","afa5eb77ae6577b0be8b00dc2e7481a3528fe1d3")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
1616
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
1717
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
18-
let [<Literal>] AssemblyVersion = "6.0.0"
19-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-09T00:00:00.0000000+00:00"
20-
let [<Literal>] AssemblyFileVersion = "6.0.0"
21-
let [<Literal>] AssemblyInformationalVersion = "6.0.0"
18+
let [<Literal>] AssemblyVersion = "6.0.1"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-10T00:00:00.0000000+00:00"
20+
let [<Literal>] AssemblyFileVersion = "6.0.1"
21+
let [<Literal>] AssemblyInformationalVersion = "6.0.1"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "08012ceb9901dbc29a12b7745c94f406db8b1fc3"
23+
let [<Literal>] AssemblyMetadata_GitHash = "afa5eb77ae6577b0be8b00dc2e7481a3528fe1d3"

0 commit comments

Comments
 (0)