Skip to content

Commit

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

### Fixed
- Fix compilation errors in scaffolded Many-to-Many joins - #119
  • Loading branch information
simon-reynolds committed Nov 13, 2021
1 parent 59c6e99 commit ed4ca95
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ 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]
## [6.0.2] - 2021-11-13

### Fixed
- Fix compilation errors in scaffolded Many-to-Many joins - https://github.com/efcore/EFCore.FSharp/pull/119

## [6.0.1] - 2021-11-10
Expand All @@ -32,6 +34,7 @@ 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.1...HEAD
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...HEAD
[6.0.2]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.1...v6.0.2
[6.0.1]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.0...v6.0.1
[6.0.0]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3...v6.0.0
20 changes: 10 additions & 10 deletions src/EFCore.FSharp/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
[<assembly: AssemblyVersionAttribute("6.0.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-10T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.1")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.1")>]
[<assembly: AssemblyVersionAttribute("6.0.2")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-13T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.2")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.2")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","afa5eb77ae6577b0be8b00dc2e7481a3528fe1d3")>]
[<assembly: AssemblyMetadataAttribute("GitHash","59c6e99b220eccbfd4094ca2e3feeb89ba0507a5")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
let [<Literal>] AssemblyVersion = "6.0.1"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-10T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "6.0.1"
let [<Literal>] AssemblyInformationalVersion = "6.0.1"
let [<Literal>] AssemblyVersion = "6.0.2"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-13T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "6.0.2"
let [<Literal>] AssemblyInformationalVersion = "6.0.2"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "afa5eb77ae6577b0be8b00dc2e7481a3528fe1d3"
let [<Literal>] AssemblyMetadata_GitHash = "59c6e99b220eccbfd4094ca2e3feeb89ba0507a5"

0 comments on commit ed4ca95

Please sign in to comment.