Skip to content

Commit

Permalink
Bump version to 0.10.1
Browse files Browse the repository at this point in the history
## [0.10.1] - 2024-01-28

### Changed
- [Various documentation updates](9b3447f)  Credits @TheAngryByrd.
- [Test against net8](#38)  Credits @TheAngryByrd.
  • Loading branch information
TheAngryByrd committed Jan 28, 2024
1 parent 3d37640 commit 8a57db1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.10.1] - 2024-01-28

### Changed
- [Various documentation updates](https://github.com/TheAngryByrd/IcedTasks/commit/9b3447f6df2e5bef3ed3f572aacb444d99850145) Credits @TheAngryByrd.
- [Test against net8](https://github.com/TheAngryByrd/IcedTasks/pull/38) Credits @TheAngryByrd.

## [0.10.0] - 2023-11-21

### Added
Expand Down Expand Up @@ -275,7 +281,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.10.0...HEAD
[Unreleased]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.1...HEAD
[0.10.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.2...v0.10.0
[0.9.2]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/TheAngryByrd/IcedTasks//compare/v0.9.0...v0.9.1
Expand Down
20 changes: 10 additions & 10 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.10.0")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2023-11-21T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.10.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.10.0")>]
[<assembly: AssemblyVersionAttribute("0.10.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2024-01-28T00:00:00.0000000-05:00")>]
[<assembly: AssemblyFileVersionAttribute("0.10.1")>]
[<assembly: AssemblyInformationalVersionAttribute("0.10.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","1a2a4bef6ae206275604eb18cb939557ac5a43fd")>]
[<assembly: AssemblyMetadataAttribute("GitHash","3d3764088aa4aa1b14ac23dbf0e0ee9d562de5ef")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "IcedTasks"
let [<Literal>] AssemblyProduct = "IcedTasks"
let [<Literal>] AssemblyVersion = "0.10.0"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2023-11-21T00:00:00.0000000-05:00"
let [<Literal>] AssemblyFileVersion = "0.10.0"
let [<Literal>] AssemblyInformationalVersion = "0.10.0"
let [<Literal>] AssemblyVersion = "0.10.1"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2024-01-28T00:00:00.0000000-05:00"
let [<Literal>] AssemblyFileVersion = "0.10.1"
let [<Literal>] AssemblyInformationalVersion = "0.10.1"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "1a2a4bef6ae206275604eb18cb939557ac5a43fd"
let [<Literal>] AssemblyMetadata_GitHash = "3d3764088aa4aa1b14ac23dbf0e0ee9d562de5ef"

0 comments on commit 8a57db1

Please sign in to comment.