Skip to content

Releases: aaronriekenberg/rust-parallel

v1.11.0

25 Nov 19:01
Compare
Choose a tag to compare
  • Add dry-run mode to simulate commands that would be run before starting a job
  • Rewrite the regular expression code to not use the expand function in the regex library. Some benefits of this:
    • Removes restrictions on characters used in capture groups
    • Makes it possible to use bash variables of the form ${var} in commands
    • Code is simpler and easier to understand
    • Regex processing is ~10% faster than previous approach.
  • Update dependencies with cargo update

v1.10.4

05 Nov 16:47
Compare
Choose a tag to compare
  • Documentation improvements
  • Update dependencies with cargo update

v1.10.3

07 Oct 17:03
Compare
Choose a tag to compare
  • Minor documentation fixes
  • Update dependencies with cargo update

v1.10.2

24 Sep 11:45
Compare
Choose a tag to compare
  • Documentation updates to the manual for regular expression, shell commands, bash function
  • Remove noisy trace from RegexProcessor
  • Update dependencies with cargo update

v1.10.1

21 Sep 22:29
Compare
Choose a tag to compare
  • Escape $ characters in arguments in regex mode to fix issue here: #9 (comment)
  • Update dependencies with cargo update

v1.10.0

17 Sep 16:14
Compare
Choose a tag to compare
  • Fix #9 allow for arbitrary curly braces in commands when using regular expressions

v1.9.1

16 Sep 16:58
Compare
Choose a tag to compare
  • Add functions for default_shell and shell_argument

v1.9.0

16 Sep 14:40
Compare
Choose a tag to compare
  • Update dependencies with cargo update
  • Add windows release build, and default shell (cmd) and argument (/c) for windows.

v1.8.3

26 Aug 14:47
Compare
Choose a tag to compare
  • Update documentation
  • Update dependencies with cargo update

v1.8.2

24 Aug 22:55
Compare
Choose a tag to compare
  • Update documentation
  • Update dependencies with cargo update