Skip to content

Commit 8027394

Browse files
Bump version to 5.0.3-alpha5
## [5.0.3-alpha5] - 2021-03-31 ### Fixed - Constraints now correctly generated - #72 - Generated Migrations will now always include the System namespace - #70 - Removed unneeded dependency - Link to NuGet badges in README.md - Removed unneeded dependency - Link to NuGet badges in README.md ### Added - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience - Initial release - F# migrations - F# scaffolding [Unreleased]: v5.0.3-alpha1...HEAD [5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1 - Initial release - F# migrations - F# scaffolding [Unreleased]: v5.0.3-alpha2...HEAD [5.0.3-alpha2]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha2 [5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1 - DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience - Initial release - F# migrations - F# scaffolding [Unreleased]: v5.0.3-alpha1...HEAD [5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1 - Initial release - F# migrations - F# scaffolding [Unreleased]: v5.0.3-alpha3...HEAD [5.0.3-alpha3]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha3 [5.0.3-alpha2]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha2 [5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1
1 parent a832874 commit 8027394

File tree

2 files changed

+38
-4
lines changed

2 files changed

+38
-4
lines changed

CHANGELOG.md

Lines changed: 36 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,44 @@ 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-
## [5.0.3-alpha4] - 2021-03-31
8+
## [5.0.3-alpha5] - 2021-03-31
99

1010
### Fixed
1111
- Constraints now correctly generated - https://github.com/efcore/EFCore.FSharp/pull/72
1212

13+
- Generated Migrations will now always include the System namespace - https://github.com/efcore/EFCore.FSharp/pull/70
14+
- Removed unneeded dependency
15+
- Link to NuGet badges in README.md
16+
- Removed unneeded dependency
17+
- Link to NuGet badges in README.md
18+
19+
### Added
20+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
21+
- Initial release
22+
- F# migrations
23+
- F# scaffolding
24+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha1...HEAD
25+
[5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1
26+
- Initial release
27+
- F# migrations
28+
- F# scaffolding
29+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha2...HEAD
30+
[5.0.3-alpha2]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha2
31+
[5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1
32+
- DbContextHelpers - curried functions for interacting with DbContext to allow for a more 'native' F# experience
33+
- Initial release
34+
- F# migrations
35+
- F# scaffolding
36+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha1...HEAD
37+
[5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1
38+
- Initial release
39+
- F# migrations
40+
- F# scaffolding
41+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha3...HEAD
42+
[5.0.3-alpha3]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha3
43+
[5.0.3-alpha2]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha2
44+
[5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1
45+
1346
## [5.0.3-alpha3] - 2021-03-31
1447

1548
### Fixed
@@ -53,7 +86,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5386
- Initial release
5487
- F# migrations
5588
- F# scaffolding
56-
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha3...HEAD
89+
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha5...HEAD
90+
[5.0.3-alpha5]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha5
5791
[5.0.3-alpha3]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha3
5892
[5.0.3-alpha2]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha2
5993
[5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1

src/EFCore.FSharp/AssemblyInfo.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ open System.Reflection
99
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
1010
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
1111
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","alpha")>]
12-
[<assembly: AssemblyMetadataAttribute("GitHash","0566eb7adf247cb5ec90155606b26cb71a2ce1aa")>]
12+
[<assembly: AssemblyMetadataAttribute("GitHash","a83287416541c729b75e5d4e778f9e0971ce8cec")>]
1313
do ()
1414

1515
module internal AssemblyVersionInformation =
@@ -20,4 +20,4 @@ module internal AssemblyVersionInformation =
2020
let [<Literal>] AssemblyFileVersion = "5.0.3"
2121
let [<Literal>] AssemblyInformationalVersion = "5.0.3"
2222
let [<Literal>] AssemblyMetadata_ReleaseChannel = "alpha"
23-
let [<Literal>] AssemblyMetadata_GitHash = "0566eb7adf247cb5ec90155606b26cb71a2ce1aa"
23+
let [<Literal>] AssemblyMetadata_GitHash = "a83287416541c729b75e5d4e778f9e0971ce8cec"

0 commit comments

Comments
 (0)