Skip to content

Commit

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

### Fixed
- Fix compilation error in generated migrations - #122
  • Loading branch information
simon-reynolds committed Nov 21, 2021
1 parent 71c07ae commit 8f6afe5
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.3] - 2021-11-21

### Fixed
- Fix compilation error in generated migrations - https://github.com/efcore/EFCore.FSharp/pull/122
Expand Down Expand Up @@ -39,7 +39,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.2...HEAD
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.3...HEAD
[6.0.3]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...v6.0.3
[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.2")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-13T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.2")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.2")>]
[<assembly: AssemblyVersionAttribute("6.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-21T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.3")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","59c6e99b220eccbfd4094ca2e3feeb89ba0507a5")>]
[<assembly: AssemblyMetadataAttribute("GitHash","71c07ae5cf19ddbf0aae82565015cdb79266ad5c")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
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>] AssemblyVersion = "6.0.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-21T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "6.0.3"
let [<Literal>] AssemblyInformationalVersion = "6.0.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "59c6e99b220eccbfd4094ca2e3feeb89ba0507a5"
let [<Literal>] AssemblyMetadata_GitHash = "71c07ae5cf19ddbf0aae82565015cdb79266ad5c"

0 comments on commit 8f6afe5

Please sign in to comment.