Skip to content

Commit

Permalink
Bump version to 6.0.7
Browse files Browse the repository at this point in the history
## [6.0.7] - 2022-06-26

### Fixed
- Change return type of helper methods in `DbContextHelpers` from `obj` to `'a`
  • Loading branch information
simon-reynolds committed Jun 26, 2022
1 parent bd06b49 commit 61386f3
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 11 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ 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).

## [6.0.7] - 2022-06-26

### Fixed
- Change return type of helper methods in `DbContextHelpers` from `obj` to `'a`

## [6.0.6] - 2022-01-16

### Fixed
Expand Down Expand Up @@ -62,7 +67,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.6...HEAD
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.7...HEAD
[6.0.7]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.6...v6.0.7
[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
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.6")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2022-01-16T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.6")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.6")>]
[<assembly: AssemblyVersionAttribute("6.0.7")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2022-06-26T00:00:00.0000000+01:00")>]
[<assembly: AssemblyFileVersionAttribute("6.0.7")>]
[<assembly: AssemblyInformationalVersionAttribute("6.0.7")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c142d04ac0b623f677933761209aacc8a16d337e")>]
[<assembly: AssemblyMetadataAttribute("GitHash","bd06b49bb7290ad9a1242b35b07609a0299fdc04")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
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>] AssemblyVersion = "6.0.7"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2022-06-26T00:00:00.0000000+01:00"
let [<Literal>] AssemblyFileVersion = "6.0.7"
let [<Literal>] AssemblyInformationalVersion = "6.0.7"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "c142d04ac0b623f677933761209aacc8a16d337e"
let [<Literal>] AssemblyMetadata_GitHash = "bd06b49bb7290ad9a1242b35b07609a0299fdc04"

0 comments on commit 61386f3

Please sign in to comment.