Skip to content
This repository has been archived by the owner on Oct 15, 2022. It is now read-only.

Releases: target/lorri

Release 1.2.0

04 Aug 10:53
43a260c
Compare
Choose a tag to compare

Add a public varlink interface, the same as used by lorri internal stream-events.

Release 1.1.1

28 Jul 21:58
05ea211
Compare
Choose a tag to compare

Patch release, adding a manpage for the lorri command.

$ man 1 lorri

LORRI(1)                  BSD General Commands Manual                 LORRI(1)

NAME
     lorri — nix-shell replacement for project development

SYNOPSIS
     lorri daemon [--extra-nix-options json]
     lorri direnv [--shell-file shell.nix]
     lorri info --shell-file shell.nix
     lorri init
     lorri self-upgrade [local <path> | master | rolling-release]
     lorri shell [--cached] [--shell-file shell.nix]

DESCRIPTION
     lorri is a nix-shell replacement for project development.  lorri is based
     around fast direnv(1) integration for robust CLI and editor integration.
…

Release 1.1

30 Jun 00:00
93d9301
Compare
Choose a tag to compare

From release.nix, changes since 1.0:

{
  version = 581;
  changes = ''
    Fix `lorri shell` for zsh. ZDOTDIR is loaded correctly.
  '';
}
{
  version = 572;
  changes = ''
    `lorri daemon` got a `--extra-nix-options` flag to pass further options
    to nix as a JSON object, or at least a subset.
    `builders` and `substituters` is supported for now.
  '';
}
{
  version = 568;
  changes = ''
    Added the `$IN_LORRI_SHELL` environment variable to allow
    differentiation between `nix-shell` and `lorri shell`. The variable is
    set to the path of the currently-evaluated shell file.
  '';
}
{
  version = 534;
  changes = ''
    Rename `lorri internal` commands for consistency:
      - `start_user_shell` -> `start-user-shell`
      - `stream_events` -> `stream-events`
  '';
}
{
  version = 518;
  changes = ''
    Internal subcommands is now visible for all users inside the internal
    subcommand. Example `lorri internal stream_events` instead of `lorri internal__stream_events`.
  '';
}
{
  version = 517;
  changes = ''
    - Fix issue with spaces in PATH entries
  '';
}
{
  version = 510;
  changes = ''
    - The shell.nix template used by `lorri init` was changed to take
      `pkgs` as an argument with import of `<nixpkgs>` used as the
      default value.
  '';
}