Skip to content

v2.0.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 21 Apr 05:46
· 11 commits to master since this release

2.0.0 (2023-04-21)

Bug Fixes

  • make String.exec more resilient—handle arguments with spaces and across OS' (01d632e)

Features

  • use "git config core.hooksPath" instead of symlinking (396f0c0)

BREAKING CHANGES

  • this note is more to signify that this change can
    have unexpected consequences on repositories that used any previous
    version where GHooks used to use symbolic links. While I can't
    think of anything that can go wrong with simply re-setting what the
    local config for hooksPath is, this note is meant to be a trigger
    for a major version change and to give a potential migration path:
  • Remove the symlinked directory (and potentially re-create an
    empty directory: rm -rf .git/hooks && mkdir .git/hooks;
  • Run GHooks' install task: ./gradlew installGitHooks;