Skip to content

Commit 96b4d27

Browse files
committed
1.0.3 release
1 parent b8a6390 commit 96b4d27

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

MedallionShell/MedallionShell.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
A lightweight library that simplifies working with processes in .NET
1616
</description>
1717
<releaseNotes>
18-
Fixed bug where timeout would suppress errors from ThrowOnError option
18+
Fixed bug with standard error
1919
</releaseNotes>
2020
<copyright>Copyright 2014</copyright>
2121
<tags>process async</tags>

MedallionShell/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
3535

36-
// 1.0.2: fixed bug where timeout would suppress errors from ThrowOnError option
37-
// 1.0.1.0: allowed for argument ommission in Command.Run(), other minor fixes
38-
[assembly: AssemblyInformationalVersion("1.0.2")]
39-
[assembly: AssemblyVersion("1.0.2.0")]
36+
[assembly: AssemblyInformationalVersion("1.0.3")]
37+
[assembly: AssemblyVersion("1.0.3.0")]
4038
[assembly: AssemblyFileVersion("1.0.0.0")]
4139

4240
[assembly: InternalsVisibleTo("MedallionShell.Tests")]

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,8 @@ var shell = new Shell(o => o.ThrowOnError()...);
5656
shell.Run("path_to_grep", "some REGEX");
5757
```
5858

59+
## Release Notes
60+
- 1.0.3 Fixed bug with standard error (thanks <a href="https://github.com/nsdfxela">nsdfxela</a>!)
61+
- 1.0.2 Fixed bug where timeout would suppress errors from ThrowOnError option
62+
- 1.0.1 Allowed for argument ommission in Command.Run(), other minor fixes
63+
- 1.0.0 Initial release

0 commit comments

Comments
 (0)