Skip to content

Releases: dloez/arcanist

Arcanist - 0.2.2

11 Jul 22:21
Compare
Choose a tag to compare
Arcanist - 0.2.2 Pre-release
Pre-release

DO NOT install this version

This version has an issue with the collection of the version which causes Arcanist to panic

Installation

Use one of the following methods

Automatic installation (recommended)

Supported OS:

  • Linux
  • macOS
  • Windows

Linux/macOS requisites:

  • wget

Linux/macOS:

  1. Open a shell and run:
curl https://raw.githubusercontent.com/dloez/arcanist/0.2.2/install.sh | sh
  1. Restart the shell. The script will also print a source command that you can run to avoid re-opening a shell to force changes.

Windows:

  1. Open a powershell window and run
$null = Invoke-WebRequest -Uri https://raw.githubusercontent.com/dloez/arcanist/0.2.2/install.ps1 -OutFile "install.ps1"; powershell -ExecutionPolicy Bypass -File "./install.ps1"; Remove-Item "install.ps1" -Force
  1. Add the printed by the installer path to the PATH system/user environment variable and open a new powershell window.

Manual installation

Use this method if your OS is currently not available in the automatic installation.

  1. Download your platform binary from the release page.
  2. Place the binary in a directory that is on the system PATH or add the directory to the PATH.
  3. Give execution permission on Linux/macOS systems (chmod +x arcanist).

Installing from source

Use this method if you cannot find a pre-built binary for your platform. Arcanist does not use any platform specific code, so if your platform is listed in the supported Rust platforms, you should be able to easily build Arcanist.

  1. Check if your platform is supported by Rust.
  2. Download and install the Rust toolchain version >= 1.70.0. The installer will configure the required targets for your platform automatically, but depending on your platform you may need additional steps.
  3. Clone the repository.
  4. Run cargo install.

Full Changelog: 0.2.1...0.2.2

Arcanist - 0.2.1

11 Jul 13:09
Compare
Choose a tag to compare
Arcanist - 0.2.1 Pre-release
Pre-release

Installation

Use one of the following methods

Automatic installation (recommended)

Supported OS:

  • Linux
  • macOS
  • Windows

Linux/macOS requisites:

  • wget

Linux/macOS:

  1. Open a shell and run:
curl https://raw.githubusercontent.com/dloez/arcanist/0.2.1/install.sh | sh
  1. Restart the shell. The script will also print a source command that you can run to avoid re-opening a shell to force changes.

Windows:

  1. Open a powershell window and run
$null = Invoke-WebRequest -Uri https://raw.githubusercontent.com/dloez/arcanist/0.2.1/install.ps1 -OutFile "install.ps1"; powershell -ExecutionPolicy Bypass -File "./install.ps1"; Remove-Item "install.ps1" -Force
  1. Add the printed by the installer path to the PATH system/user environment variable and open a new powershell window.

Manual installation

Use this method if your OS is currently not available in the automatic installation.

  1. Download your platform binary from the release page.
  2. Place the binary in a directory that is on the system PATH or add the directory to the PATH.
  3. Give execution permission on Linux/macOS systems (chmod +x arcanist).

Installing from source

Use this method if you cannot find a pre-built binary for your platform. Arcanist does not use any platform specific code, so if your platform is listed in the supported Rust platforms, you should be able to easily build Arcanist.

  1. Check if your platform is supported by Rust.
  2. Download and install the Rust toolchain version >= 1.70.0. The installer will configure the required targets for your platform automatically, but depending on your platform you may need additional steps.
  3. Clone the repository.
  4. Run cargo install.

What's Changed

  • Add support for sh files and mechanisms to pass arguments to functions by @dloez in #4
  • Add version to CLI description from Cargo.toml by @dloez in #5

Full Changelog: 0.1.0...0.2.1

Arcanist - 0.1.0

11 Jul 07:38
Compare
Choose a tag to compare
Arcanist - 0.1.0 Pre-release
Pre-release

Installation

Use one of the following methods

Automatic installation (recommended)

Supported OS:

  • Linux
  • macOS
  • Windows

Linux/macOS requisites:

  • wget

Linux/macOS:

  1. Open a shell and run:
curl https://raw.githubusercontent.com/dloez/arcanist/0.1.0/install.sh | sh
  1. Restart the shell. The script will also print a source command that you can run to avoid re-opening a shell to force changes.

Windows:

  1. Open a powershell window and run
$null = Invoke-WebRequest -Uri https://raw.githubusercontent.com/dloez/arcanist/0.1.0/install.ps1 -OutFile "install.ps1"; powershell -ExecutionPolicy Bypass -File "./install.ps1"; Remove-Item "install.ps1" -Force
  1. Add the printed by the installer path to the PATH system/user environment variable and open a new powershell window.

Manual installation

Use this method if your OS is currently not available in the automatic installation.

  1. Download your platform binary from the release page.
  2. Place the binary in a directory that is on the system PATH or add the directory to the PATH.
  3. Give execution permission on Linux/macOS systems (chmod +x arcanist).

Installing from source

Use this method if you cannot find a pre-built binary for your platform. Arcanist does not use any platform specific code, so if your platform is listed in the supported Rust platforms, you should be able to easily build Arcanist.

  1. Check if your platform is supported by Rust.
  2. Download and install the Rust toolchain version >= 1.70.0. The installer will configure the required targets for your platform automatically, but depending on your platform you may need additional steps.
  3. Clone the repository.
  4. Run cargo install.

What's Changed

  • Add github actions by @dloez in #1
  • Feature/installation script by @dloez in #2
  • Feature/windows install script by @dloez in #3

New Contributors

  • @dloez made their first contribution in #1

Full Changelog: https://github.com/dloez/arcanist/commits/0.1.0