Skip to content

Commit 8f6afe5

Browse files
Bump version to 6.0.3
## [6.0.3] - 2021-11-21 ### Fixed - Fix compilation error in generated migrations - #122
1 parent 71c07ae commit 8f6afe5

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.3] - 2021-11-21
99

1010
### Fixed
1111
- Fix compilation error in generated migrations - https://github.com/efcore/EFCore.FSharp/pull/122
@@ -39,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3939
- 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
4040
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
4141
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
42-
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...HEAD
42+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.3...HEAD
43+
[6.0.3]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...v6.0.3
4344
[6.0.2]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.1...v6.0.2
4445
[6.0.1]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.0...v6.0.1
4546
[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.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")>]
7+
[<assembly: AssemblyVersionAttribute("6.0.3")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-21T00:00:00.0000000+00:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("6.0.3")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("6.0.3")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","59c6e99b220eccbfd4094ca2e3feeb89ba0507a5")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","71c07ae5cf19ddbf0aae82565015cdb79266ad5c")>]
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.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"
18+
let [<Literal>] AssemblyVersion = "6.0.3"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-21T00:00:00.0000000+00:00"
20+
let [<Literal>] AssemblyFileVersion = "6.0.3"
21+
let [<Literal>] AssemblyInformationalVersion = "6.0.3"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
23-
let [<Literal>] AssemblyMetadata_GitHash = "59c6e99b220eccbfd4094ca2e3feeb89ba0507a5"
23+
let [<Literal>] AssemblyMetadata_GitHash = "71c07ae5cf19ddbf0aae82565015cdb79266ad5c"

0 commit comments

Comments
 (0)