Skip to content

Commit 4210239

Browse files
Bump version to 6.0.4
## [6.0.4] - 2021-11-29 ### Fixed - Fix compilation error in generated migrations - #123 ### Added - Support for Check Constraints in Migrations - #123
1 parent 2d6c3d3 commit 4210239

File tree

2 files changed

+20
-12
lines changed

2 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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+
## [6.0.4] - 2021-11-29
9+
10+
### Fixed
11+
- Fix compilation error in generated migrations - https://github.com/efcore/EFCore.FSharp/pull/123
12+
13+
### Added
14+
- Support for Check Constraints in Migrations - https://github.com/efcore/EFCore.FSharp/pull/123
15+
816
## [6.0.3] - 2021-11-21
917

1018
### Fixed
@@ -39,7 +47,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3947
- 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
4048
- Automatic registration of DesignTimeServices - https://github.com/efcore/EFCore.FSharp/pull/86
4149
- 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.3...HEAD
50+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.4...HEAD
51+
[6.0.4]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.3...v6.0.4
4352
[6.0.3]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.2...v6.0.3
4453
[6.0.2]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.1...v6.0.2
4554
[6.0.1]: https://github.com/efcore/EFCore.FSharp/compare/v6.0.0...v6.0.1

src/EFCore.FSharp/AssemblyInfo.fs

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
// Auto-Generated by FAKE; do not edit
22
namespace System
3-
43
open System.Reflection
54

65
[<assembly: AssemblyTitleAttribute("EFCore.FSharp")>]
76
[<assembly: AssemblyProductAttribute("EFCore.FSharp")>]
8-
[<assembly: AssemblyVersionAttribute("6.0.3")>]
9-
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-21T00:00:00.0000000+00:00")>]
10-
[<assembly: AssemblyFileVersionAttribute("6.0.3")>]
11-
[<assembly: AssemblyInformationalVersionAttribute("6.0.3")>]
7+
[<assembly: AssemblyVersionAttribute("6.0.4")>]
8+
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-11-29T00:00:00.0000000+00:00")>]
9+
[<assembly: AssemblyFileVersionAttribute("6.0.4")>]
10+
[<assembly: AssemblyInformationalVersionAttribute("6.0.4")>]
1211
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
13-
[<assembly: AssemblyMetadataAttribute("GitHash","71c07ae5cf19ddbf0aae82565015cdb79266ad5c")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","2d6c3d39d8207d535d3f80ce8ca34820b0e59ec9")>]
1413
do ()
1514

1615
module internal AssemblyVersionInformation =
1716
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
1817
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
19-
let [<Literal>] AssemblyVersion = "6.0.3"
20-
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-21T00:00:00.0000000+00:00"
21-
let [<Literal>] AssemblyFileVersion = "6.0.3"
22-
let [<Literal>] AssemblyInformationalVersion = "6.0.3"
18+
let [<Literal>] AssemblyVersion = "6.0.4"
19+
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-11-29T00:00:00.0000000+00:00"
20+
let [<Literal>] AssemblyFileVersion = "6.0.4"
21+
let [<Literal>] AssemblyInformationalVersion = "6.0.4"
2322
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
24-
let [<Literal>] AssemblyMetadata_GitHash = "71c07ae5cf19ddbf0aae82565015cdb79266ad5c"
23+
let [<Literal>] AssemblyMetadata_GitHash = "2d6c3d39d8207d535d3f80ce8ca34820b0e59ec9"

0 commit comments

Comments
 (0)