Skip to content

Releases: alexrozanski/Coquille

v0.3.0: Cancellation and better defaults

09 May 10:54
cb28716
Compare
Choose a tag to compare
  • Supports cancellation of in-flight execution by returning an opaque cancellation handle you can call cancel() on
  • Defaults printing to stdout and stderr to false to make it easier to run background tasks silently
  • Fixes implementation of tests to make them more robust

v0.2.0: Minor fixes

05 Apr 19:07
Compare
Choose a tag to compare
  • Mark additional members of Process API as public that were missed in the original release
  • Minor tweaks to README

v0.1.0: Initial release

05 Apr 17:55
Compare
Choose a tag to compare

Initial implementation of Coquille, supporting:

  • Simple API for specifying commands and arguments
  • async API for running shell commands
  • Support for default printing to stdout and stderr
  • Support for handlers to stream stdout and stderr from the child process to
  • Basic test coverage