Skip to content

Commit ed4ca95

Browse files
Bump version to 6.0.2
## [6.0.2] - 2021-11-13 ### Fixed - Fix compilation errors in scaffolded Many-to-Many joins - #119
1 parent 59c6e99 commit ed4ca95

File tree

2 files changed

+15
-12
lines changed

2 files changed

+15
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ 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.2] - 2021-11-13
9+
10+
### Fixed
911
- Fix compilation errors in scaffolded Many-to-Many joins - https://github.com/efcore/EFCore.FSharp/pull/119
1012

1113
## [6.0.1] - 2021-11-10
@@ -32,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3234
- 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
3335
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
3436
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
35-
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.1...HEAD
37+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...HEAD
38+
[6.0.2]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.1...v6.0.2
3639
[6.0.1]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.0...v6.0.1
3740
[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.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")>]
7+
[<assembly: AssemblyVersionAttribute("6.0.2")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-13T00:00:00.0000000+00:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("6.0.2")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("6.0.2")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","afa5eb77ae6577b0be8b00dc2e7481a3528fe1d3")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","59c6e99b220eccbfd4094ca2e3feeb89ba0507a5")>]
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.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"
18+
let [<Literal>] AssemblyVersion = "6.0.2"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-13T00:00:00.0000000+00:00"
20+
let [<Literal>] AssemblyFileVersion = "6.0.2"
21+
let [<Literal>] AssemblyInformationalVersion = "6.0.2"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "afa5eb77ae6577b0be8b00dc2e7481a3528fe1d3"
23+
let [<Literal>] AssemblyMetadata_GitHash = "59c6e99b220eccbfd4094ca2e3feeb89ba0507a5"

0 commit comments

Comments
 (0)