File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 15
15
A lightweight library that simplifies working with processes in .NET
16
16
</description >
17
17
<releaseNotes >
18
- Fixed bug where timeout would suppress errors from ThrowOnError option
18
+ Fixed bug with standard error
19
19
</releaseNotes >
20
20
<copyright >Copyright 2014</copyright >
21
21
<tags >process async</tags >
Original file line number Diff line number Diff line change 33
33
// by using the '*' as shown below:
34
34
// [assembly: AssemblyVersion("1.0.*")]
35
35
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" ) ]
40
38
[ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
41
39
42
40
[ assembly: InternalsVisibleTo ( "MedallionShell.Tests" ) ]
Original file line number Diff line number Diff line change @@ -56,3 +56,8 @@ var shell = new Shell(o => o.ThrowOnError()...);
56
56
shell .Run (" path_to_grep" , " some REGEX" );
57
57
```
58
58
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
You can’t perform that action at this time.
0 commit comments