Skip to content

Releases: TekWizely/run

Brew Tap Instructions : v0.6.3

23 Dec 00:28
cd67da9
Compare
Choose a tag to compare
Pre-release

This release marks the addition of the brew tap instructions to the README and contains documentation-changes only.

If you have installed v0.6.2 there is no need to grab this version.

It is created for completeness.


Brew

A brew core formula is in the works, but in the meantime, I have created a tap tha can be used to install run:

install run directly

$ brew install tekwizely/tap/run

install tap to track updates

$ brew tap tekwizely/tap

$ brew install run

Auto-Detection for "#!" Scripts : v0.6.2

21 Dec 23:09
839026a
Compare
Choose a tag to compare

This release adds the ability to auto-detect #! scripts (as opposed to needing to explicitly specify '#!' as the shell)

Specifying '#!' explicitly still works, but has been removed from the documentation.

Using '-' in Command Names : v0.6.1

20 Dec 19:55
50f8a3c
Compare
Choose a tag to compare
Pre-release

This release adds support for '-' in command names. i.e.:

  • hello
  • hello_world
  • hello-world
  • HelloWorld

Additionally, it contains updates to the README to clarify a few aspects of command naming, namely relating to case-sensitivity.

Passing Options Through to Command Script : v0.6.0

20 Dec 17:12
83e869d
Compare
Choose a tag to compare

Breaking Change

NOTE: This is a breaking change, so minor version updated from 0.5 => 0.6

Passing Options Through to Command Script

With this change, Run will pass all args through to the command script if no options are defined within the Runfile.

Previously the way to do this was to use a '--' before the script options. (however this was not mentioned in the README)

This '--' method still works and is the only method for sending options to the script when the Runfile also defines options for the command.

The documentation has been updated to reflect all of these cases.

MainMode

MainMode still auto-adds the help arguments, otherwise there would be no way to invoke help in that mode.

This means that, in MainMode, the only way to pass options directly to the script is to use the '--' method.

Announcement + 1 Fix : v0.5.1

19 Dec 23:11
a763838
Compare
Choose a tag to compare
Pre-release

This release represents the version of the repo from the first HN announcement, with the addition of one bug fix, #1