Skip to content

Releases: toumorokoshi/tome

v0.11.1

29 Oct 06:39
f8233b8
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.11.0...v0.11.1

v0.11.0

14 Sep 21:05
e3a2b17
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.10.0...v0.11.0

v0.10.0

12 Sep 18:25
c19e251
Compare
Choose a tag to compare
  • feat: Add tome run (#44)
  • fix: fix completion for sh/bash/zsh (#47)
  • fix(fish): update completions to match new cli interface (#42)

v0.9.0

01 May 06:02
94a6d80
Compare
Choose a tag to compare

The 0.9 series should be the final version of tome before a 1.0
release.

This includes a couple breaking changes, and users should update
their scripts:

  • the following commands are now builtins, and will overrides any scripts with the same name: commands, exec, help, tome.
  • tome no longer infers the shell from the SHELL environment variable in
    any situation: users should pass in the desired shell directly during the initialization.
  • a script must be explicitly be marked with COMPLETE to support
    completion. Previously all scripts were assumed to support completion.

What's Changed

Full Changelog: v0.8.1...v0.9.0

v0.8.1

25 Mar 06:24
9312153
Compare
Choose a tag to compare
fix completion for tome names with 2+ chars (#30)

fix #28 (GitHub)

tome completion was failing for a command "app", when
navigating to sub directories.

This was occurring due to incorrect stripping of
the first word in completion, instead stripping the
first 2 chars.

some minor style fixes.

v0.8.0b0

24 Mar 06:03
e2d8811
Compare
Choose a tag to compare
minor: adding e2e tests (#27)

Adding end-to-end tests to sanity check tome builds.

The zsh / bash completion logic wasn't working for non-interactive initial invocations for zsh (needed for CI), so added a -C flag to silence the interactive portion.

The fish shell needed it's own e2e script and variants of scripts for sourcing.

v0.7.5

14 Jan 05:44
90b3ba9
Compare
Choose a tag to compare
include support for OSX "-zsh" (#20)

v0.7.4

05 Jan 07:41
Compare
Choose a tag to compare
v0.7.4 Pre-release
Pre-release
first build published via GitHub actions.

No code changes.

bugfix: args now passed to non-source scripts

16 Nov 06:53
Compare
Choose a tag to compare
Fixes #16. Previously arguments were not passed into non-source
scripts, which made common use cases of parameterized scripts
impossible.

bugfix: add clearer message for commands not found in directories

05 Feb 00:19
Compare
Choose a tag to compare
Adding messages when argument is a directory

The previous error message when one selects a command that doesn't exist
in a subdirectory was unhelpful.