Skip to content

Commit

Permalink
Release 4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Apr 3, 2020
1 parent 49f3ad2 commit ff15558
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@ The `Unreleased` section name is replaced by the expected version of next releas
### Removed
### Fixed

<a name="4.4.2"></a>
## [4.4.2] - 2020-04-04

### Fixed

- Added missing catch for `MissingArg` exceptions in all `main`s [#61](https://github.com/jet/dotnet-templates/pull/61) :pray: [@wantastic](https://github.com/wantastic84)

<a name="4.4.1"></a>
## [4.4.1] - 2020-04-01

Expand Down Expand Up @@ -376,7 +383,8 @@ The `Unreleased` section name is replaced by the expected version of next releas

(For information pertaining to earlier releases, see release notes in https://github.com/jet/dotnet-templates/releases and/or can someone please add it!)

[Unreleased]: https://github.com/jet/dotnet-templates/compare/4.4.1...HEAD
[Unreleased]: https://github.com/jet/dotnet-templates/compare/4.4.2...HEAD
[4.4.2]: https://github.com/jet/dotnet-templates/compare/4.4.1...4.4.2
[4.4.1]: https://github.com/jet/dotnet-templates/compare/4.4.0...4.4.1
[4.4.0]: https://github.com/jet/dotnet-templates/compare/4.3.0...4.4.0
[4.3.0]: https://github.com/jet/dotnet-templates/compare/4.2.0...4.3.0
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ let main argv =
try Logging.initialize args.Verbose
try Configuration.initialize ()
if run args then 0 else 3
with e -> Log.Fatal(e, "Exiting"); 2
with Args.MissingArg msg -> eprintfn "%s" msg; 1
| e -> Log.Fatal(e, "Exiting"); 2
finally Log.CloseAndFlush()
with Args.MissingArg msg -> eprintfn "%s" msg; 1
| :? Argu.ArguParseException as e -> eprintfn "%s" e.Message; 1
Expand Down
2 changes: 1 addition & 1 deletion propulsion-consumer/Program.fs
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,4 @@ let main argv =
finally Log.CloseAndFlush()
with Args.MissingArg msg -> eprintfn "%s" msg; 1
| :? Argu.ArguParseException as e -> eprintfn "%s" e.Message; 1
| e -> eprintf "Exception %s" e.Message; 1
| e -> eprintf "Exception %s" e.Message; 1

0 comments on commit ff15558

Please sign in to comment.