Skip to content

Commit 39a93cb

Browse files
committed
0.10.3
1 parent 59b5fd9 commit 39a93cb

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

Readme.adoc

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
= OS-Lib
2-
:version: 0.10.2
2+
:version: 0.10.3
33
:toc-placement: preamble
44
:toclevels: 3
55
:toc:
@@ -1450,7 +1450,10 @@ parent process read from the subprocess via `os.SubProcess#stdout`
14501450
and `os.SubProcess#stderr`.
14511451
* `os.Inherit`: inherits the stream from the parent process. This lets the
14521452
subprocess read directly from the parent process's standard input or write
1453-
directly to the parent process's standard output or error
1453+
directly to the parent process's standard output or error. `os.Inherit`
1454+
can be redirected on a threadlocal basis via `os.Inherit.in`, `.out`, or `.err`.
1455+
* `os.InheritRaw`: identical to `os.Inherit`, but without being affected by
1456+
redirects.
14541457
* `os.Path`: connects the subprocess's stream to the given filesystem
14551458
path, reading its standard input from a file or writing its standard
14561459
output/error to the file.
@@ -2224,10 +2227,12 @@ string, int or set representations of the `os.PermSet` via:
22242227

22252228
== Changelog
22262229

2227-
[#main]
2228-
=== main
2230+
[#0-10-3]
2231+
=== 0.10.3
2232+
2233+
* `os.Inherit` now can be redirected on a threadlocal basis via `os.Inherit.in`, `.out`, or `.err`.
2234+
`os.InheritRaw` is available if you do not want the redirects to take effect
22292235

2230-
* `os.Inherit`
22312236

22322237
[#0-10-2]
22332238
=== 0.10.2

0 commit comments

Comments
 (0)