Skip to content

Commit

Permalink
Bump version to 5.0.3-alpha1
Browse files Browse the repository at this point in the history
## [5.0.3-alpha1] - 2021-03-21

### Added
- Initial release
- F# migrations
- F# scaffolding
  • Loading branch information
simon-reynolds committed Mar 21, 2021
1 parent 6fcff34 commit 875f214
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 13 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Changelog

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]
## [5.0.3-alpha1] - 2021-03-21

### Added
- Initial release
- F# migrations
- F# scaffolding
[Unreleased]: https://github.com/efcore/EFCore.FSharp/compare/v5.0.3-alpha1...HEAD
[5.0.3-alpha1]: https://github.com/efcore/EFCore.FSharp/releases/tag/v5.0.3-alpha1
24 changes: 12 additions & 12 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("0.1.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2017-03-17T00:00:00.0000000")>]
[<assembly: AssemblyFileVersionAttribute("0.1.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.1.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","bb8964b54bee133e9af64d316dc2cfee16df7f72")>]
[<assembly: AssemblyVersionAttribute("5.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-03-21T00:00:00.0000000+00:00")>]
[<assembly: AssemblyFileVersionAttribute("5.0.3")>]
[<assembly: AssemblyInformationalVersionAttribute("5.0.3")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","alpha")>]
[<assembly: AssemblyMetadataAttribute("GitHash","6fcff344c38a533e1a0c690cd85b30c9824455cd")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "EFCore.FSharp"
let [<Literal>] AssemblyProduct = "EFCore.FSharp"
let [<Literal>] AssemblyVersion = "0.1.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2017-03-17T00:00:00.0000000"
let [<Literal>] AssemblyFileVersion = "0.1.0"
let [<Literal>] AssemblyInformationalVersion = "0.1.0"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "bb8964b54bee133e9af64d316dc2cfee16df7f72"
let [<Literal>] AssemblyVersion = "5.0.3"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-03-21T00:00:00.0000000+00:00"
let [<Literal>] AssemblyFileVersion = "5.0.3"
let [<Literal>] AssemblyInformationalVersion = "5.0.3"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "alpha"
let [<Literal>] AssemblyMetadata_GitHash = "6fcff344c38a533e1a0c690cd85b30c9824455cd"

0 comments on commit 875f214

Please sign in to comment.