Skip to content

v0.3.0

Compare
Choose a tag to compare
@Baarsgaard Baarsgaard released this 17 Sep 20:48
· 104 commits to master since this release

Features

  • Fuzzy filtering in Issue select prompts!!!!
  • New commit-msg hook to automatically add issue key from branch to commit messages.
    Additional hook subcommand to install git hook if it was skipped during init
  • Breaking --date on jig log is now used to pass full date to the command, allowing to add worklogs entirely via a script.
  • jig log 0.5h --comment MSG, MSG is now optional and is prompted after date.

Fixes

  • jig init message cleaned up
  • jig upgrade output was too muted by default

All changes: v0.2.0...v0.3.0

Upgrading:

jig upgrade

Installation

Pick between cloud and server (APIs differ)

Linux

# Cloud
wget -O ~/.local/bin/jig "https://github.com/Raunow/jig/releases/download/v0.3.0/jig-cloud-x86_64-unknown-linux-gnu"
# Server
wget -O ~/.local/bin/jig "https://github.com/Raunow/jig/releases/download/v0.3.0/jig-server-x86_64-unknown-linux-gnu"

chmod +x ~/.local/bin/jig

Windows

# cloud
Invoke-WebRequest -Uri "https://github.com/Raunow/jig/releases/download/v0.3.0/jig-cloud-x86_64-pc-windows-msvc.exe" -OutFile "C:\<Somewhere in PATH>\jig.exe"
# server
Invoke-WebRequest -Uri "https://github.com/Raunow/jig/releases/download/v0.3.0/jig-server-x86_64-pc-windows-msvc.exe" -OutFile "C:\<Somewhere in PATH>\jig.exe"

From source

Install Cargo along Rust using rustup: https://www.rust-lang.org/learn/get-started

cargo install --locked --git https://github.com/raunow/jig.git --features <cloud|server>