Skip to content

Commit

Permalink
0.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lihaoyi committed Jul 20, 2024
1 parent 59b5fd9 commit 39a93cb
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Readme.adoc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
= OS-Lib
:version: 0.10.2
:version: 0.10.3
:toc-placement: preamble
:toclevels: 3
:toc:
Expand Down Expand Up @@ -1450,7 +1450,10 @@ parent process read from the subprocess via `os.SubProcess#stdout`
and `os.SubProcess#stderr`.
* `os.Inherit`: inherits the stream from the parent process. This lets the
subprocess read directly from the parent process's standard input or write
directly to the parent process's standard output or error
directly to the parent process's standard output or error. `os.Inherit`
can be redirected on a threadlocal basis via `os.Inherit.in`, `.out`, or `.err`.
* `os.InheritRaw`: identical to `os.Inherit`, but without being affected by
redirects.
* `os.Path`: connects the subprocess's stream to the given filesystem
path, reading its standard input from a file or writing its standard
output/error to the file.
Expand Down Expand Up @@ -2224,10 +2227,12 @@ string, int or set representations of the `os.PermSet` via:

== Changelog

[#main]
=== main
[#0-10-3]
=== 0.10.3

* `os.Inherit` now can be redirected on a threadlocal basis via `os.Inherit.in`, `.out`, or `.err`.
`os.InheritRaw` is available if you do not want the redirects to take effect

* `os.Inherit`

[#0-10-2]
=== 0.10.2
Expand Down

0 comments on commit 39a93cb

Please sign in to comment.