Skip to content

Commit

Permalink
add Process.exec to README
Browse files Browse the repository at this point in the history
  • Loading branch information
joshgoebel committed May 27, 2021
1 parent 61c4f42 commit fb720c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## 0.2.0 (in progress)
## 0.2.0

- (chore) Auto-build and test binary releases for Windows, Mac, Linux platforms on tagged versions
- (enh) Integrate `Mirror` functionality for stack trace introspection (via wren-essentials)
Expand All @@ -8,6 +8,8 @@
- (enh) Add `Runtime` API for getting information about the runtime
- (enh) Add `Process.exit()` and `Process.exit(code)`
- (enh) Add `Stderr.write(_)` and `Stderr.print(_)`
- (fix) `Process.exit()` should actually work properly now
- (enh) Add `Process.exec(command, [arguments, [workingDirectory, [environment]]])`

## 0.1.0

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ Our hope is to extend the libraries available without breaking forwards compatib

### `os` module

- `Process.exec(command, [arguments, [workingDirectory, [environment]]])` - Run an external command and display it's output
- `Process.exit()` - Exit immediately with 0 status code
- `Process.exit(code)` - Exit immediately with the specified exit status code. (https://github.com/wren-lang/wren-cli/pull/74)

Expand Down

0 comments on commit fb720c7

Please sign in to comment.