Skip to content

Commit

Permalink
Bump version to 6.0.6
Browse files Browse the repository at this point in the history
## [6.0.6] - 2022-01-16

### Fixed
- Prevent ManyServiceProvidersCreatedWarning exception - #130
- Helper methods should allow composite keys - #131
- AlterColumn operations no longer create unnecessary migrations - #133
  • Loading branch information
simon-reynolds committed Jan 16, 2022
1 parent c142d04 commit 8049dcb
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
5 changes: 3 additions & 2 deletions 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).

## [Unreleased]
## [6.0.6] - 2022-01-16

### Fixed
- Prevent ManyServiceProvidersCreatedWarning exception - https://github.com/efcore/EFCore.FSharp/pull/130
Expand Down Expand Up @@ -62,7 +62,8 @@ 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.5...HEAD
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.6...HEAD
[6.0.6]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.5...v6.0.6
[6.0.5]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.4...v6.0.5
[6.0.4]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.3...v6.0.4
[6.0.3]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...v6.0.3
Expand Down
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.5")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-30T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.5")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.5")>]
[<assembly: AssemblyVersionAttribute("6.0.6")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2022-01-16T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.6")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.6")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","9b0e92f0fe99052d899a2c5bc55a5f8b61416127")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c142d04ac0b623f677933761209aacc8a16d337e")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
let [<Literal>] AssemblyVersion = "6.0.5"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-30T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "6.0.5"
let [<Literal>] AssemblyInformationalVersion = "6.0.5"
let [<Literal>] AssemblyVersion = "6.0.6"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2022-01-16T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "6.0.6"
let [<Literal>] AssemblyInformationalVersion = "6.0.6"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "9b0e92f0fe99052d899a2c5bc55a5f8b61416127"
let [<Literal>] AssemblyMetadata_GitHash = "c142d04ac0b623f677933761209aacc8a16d337e"

0 comments on commit 8049dcb

Please sign in to comment.