Skip to content

Commit

Permalink
Bump version to 0.3.0-beta001
Browse files Browse the repository at this point in the history
## [0.3.0-beta001] - 2022-11-06

### Fixed

- [Verifies upstream F# fix for task resumption code](#8)

### Changed

- [Updates to F# 7](#8)
  • Loading branch information
TheAngryByrd committed Nov 7, 2022
1 parent 8c715d9 commit eaa4e59
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 13 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ 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).

## [0.3.0-beta001] - 2022-11-06

### Fixed

- [Verifies upstream F# fix for task resumption code](https://github.com/TheAngryByrd/IcedTasks/issues/8)

### Changed

- [Updates to F# 7](https://github.com/TheAngryByrd/IcedTasks/issues/8)

## [0.2.0] - 2022-03-22

### Added
Expand All @@ -30,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Increased soeed and lowered memory usage of ColdTask and CancellableTask
- Build for netstandard2.0 and netstandard2.1

[Unreleased]: https://github.com/TheAngryByrd/IcedTasks/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks/compare/v0.3.0-beta001...HEAD
[0.3.0-beta001]: https://github.com/TheAngryByrd/IcedTasks/compare/v0.2.0...v0.3.0-beta001
[0.2.0]: https://github.com/TheAngryByrd/IcedTasks/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/TheAngryByrd/IcedTasks/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/TheAngryByrd/IcedTasks/releases/tag/v0.1.0
Expand Down
24 changes: 12 additions & 12 deletions src/IcedTasks/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("IcedTasks")>]
[<assembly: AssemblyProductAttribute("IcedTasks")>]
[<assembly: AssemblyVersionAttribute("0.2.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2022-03-22T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.2.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.2.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","3420057c3dedcf65db053f02aec607cf7f4eee06")>]
[<assembly: AssemblyVersionAttribute("0.3.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2022-11-06T00:00:00.0000000-04:00")>]
[<assembly: AssemblyFileVersionAttribute("0.3.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.3.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","beta")>]
[<assembly: AssemblyMetadataAttribute("GitHash","8c715d9290a9dcf8d840ef3eb372d9d2258bb1ce")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.2.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2022-03-22T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.2.0"
let [<Literal>] AssemblyInformationalVersion = "0.2.0"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "3420057c3dedcf65db053f02aec607cf7f4eee06"
let [<Literal>] AssemblyVersion = "0.3.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2022-11-06T00:00:00.0000000-04:00"
let [<Literal>] AssemblyFileVersion = "0.3.0"
let [<Literal>] AssemblyInformationalVersion = "0.3.0"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "beta"
let [<Literal>] AssemblyMetadata_GitHash = "8c715d9290a9dcf8d840ef3eb372d9d2258bb1ce"

0 comments on commit eaa4e59

Please sign in to comment.