Skip to content

v1.1.0

Choose a tag to compare

@licht1stein licht1stein released this 09 Jul 23:13
· 92 commits to master since this release

What's Changed

New Features

  • Exit with code 1 on evaluation errors
  • Track evaluation errors from nREPL responses for proper error handling in shell scripts and CI pipelines

Bug Fixes

  • Fixed error detection for both exceptions and eval-error status

Installation

Download directly:

curl -sSL https://raw.githubusercontent.com/licht1stein/brepl/v1.1.0/brepl -o brepl
chmod +x brepl

Using Nix:

brepl = pkgs.callPackage (pkgs.fetchFromGitHub {
  owner = "licht1stein";
  repo = "brepl";
  rev = "v1.1.0";
  hash = "sha256-<hash-will-be-updated>";
} + "/package.nix") {};

Full Changelog: v1.0.0...v1.1.0