Skip to content

Commit

Permalink
Bump version to 0.2.1
Browse files Browse the repository at this point in the history
## [0.2.1] - 2021-04-14

### Fixed
* Internal ops that are not entrypoints call are ignored
  • Loading branch information
BodySplash committed Apr 14, 2021
1 parent c2ca8de commit 5e23b62
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 18 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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]
## [0.2.1] - 2021-04-14

### Fixed
* Internal ops that are not entrypoints call are ignored
Expand Down Expand Up @@ -39,7 +39,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added
- Initial release
[Unreleased]: https://github.com/bender-labs/tz-watch/compare/v0.2.0...HEAD
[Unreleased]: https://github.com/bender-labs/tz-watch/compare/v0.2.1...HEAD
[0.2.1]: https://github.com/bender-labs/tz-watch/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/bender-labs/tz-watch/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/bender-labs/tz-watch/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/bender-labs/tz-watch/compare/v0.0.6...v0.1.0
Expand Down
16 changes: 8 additions & 8 deletions src/TzWatch.Http/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("TzWatch.Http")>]
[<assembly: AssemblyProductAttribute("TzWatch")>]
[<assembly: AssemblyVersionAttribute("0.2.0")>]
[<assembly: AssemblyVersionAttribute("0.2.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-04-14T00:00:00.0000000+02:00")>]
[<assembly: AssemblyFileVersionAttribute("0.2.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.2.0")>]
[<assembly: AssemblyFileVersionAttribute("0.2.1")>]
[<assembly: AssemblyInformationalVersionAttribute("0.2.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","ca92b964f16f58ebfd3284bd476273a81b80afc9")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c2ca8de7f380fac60778d2fc13c3700efc327e96")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "TzWatch.Http"
let [<Literal>] AssemblyProduct = "TzWatch"
let [<Literal>] AssemblyVersion = "0.2.0"
let [<Literal>] AssemblyVersion = "0.2.1"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-04-14T00:00:00.0000000+02:00"
let [<Literal>] AssemblyFileVersion = "0.2.0"
let [<Literal>] AssemblyInformationalVersion = "0.2.0"
let [<Literal>] AssemblyFileVersion = "0.2.1"
let [<Literal>] AssemblyInformationalVersion = "0.2.1"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "ca92b964f16f58ebfd3284bd476273a81b80afc9"
let [<Literal>] AssemblyMetadata_GitHash = "c2ca8de7f380fac60778d2fc13c3700efc327e96"
16 changes: 8 additions & 8 deletions src/TzWatch.Lib/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,20 @@ open System.Reflection

[<assembly: AssemblyTitleAttribute("TzWatch.Lib")>]
[<assembly: AssemblyProductAttribute("TzWatch")>]
[<assembly: AssemblyVersionAttribute("0.2.0")>]
[<assembly: AssemblyVersionAttribute("0.2.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseDate","2021-04-14T00:00:00.0000000+02:00")>]
[<assembly: AssemblyFileVersionAttribute("0.2.0")>]
[<assembly: AssemblyInformationalVersionAttribute("0.2.0")>]
[<assembly: AssemblyFileVersionAttribute("0.2.1")>]
[<assembly: AssemblyInformationalVersionAttribute("0.2.1")>]
[<assembly: AssemblyMetadataAttribute("ReleaseChannel","release")>]
[<assembly: AssemblyMetadataAttribute("GitHash","ca92b964f16f58ebfd3284bd476273a81b80afc9")>]
[<assembly: AssemblyMetadataAttribute("GitHash","c2ca8de7f380fac60778d2fc13c3700efc327e96")>]
do ()

module internal AssemblyVersionInformation =
let [<Literal>] AssemblyTitle = "TzWatch.Lib"
let [<Literal>] AssemblyProduct = "TzWatch"
let [<Literal>] AssemblyVersion = "0.2.0"
let [<Literal>] AssemblyVersion = "0.2.1"
let [<Literal>] AssemblyMetadata_ReleaseDate = "2021-04-14T00:00:00.0000000+02:00"
let [<Literal>] AssemblyFileVersion = "0.2.0"
let [<Literal>] AssemblyInformationalVersion = "0.2.0"
let [<Literal>] AssemblyFileVersion = "0.2.1"
let [<Literal>] AssemblyInformationalVersion = "0.2.1"
let [<Literal>] AssemblyMetadata_ReleaseChannel = "release"
let [<Literal>] AssemblyMetadata_GitHash = "ca92b964f16f58ebfd3284bd476273a81b80afc9"
let [<Literal>] AssemblyMetadata_GitHash = "c2ca8de7f380fac60778d2fc13c3700efc327e96"

0 comments on commit 5e23b62

Please sign in to comment.