From 0dc03d8a815da5b1b885d5a96a8fe83ba7ffe8ff Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Wed, 6 Nov 2024 11:01:09 +0100 Subject: [PATCH] Set version to v1.6.0. --- README.md | 4 ++-- src/jlpkg-completion.bash | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e488f28..24174cb 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ Keyword arguments: It is possible to download and extract a prebuilt script with default settings. For example, to download the latest release you can run the following ```bash -curl -fsSL https://github.com/fredrikekre/jlpkg/releases/download/v1.5.1/jlpkg-v1.5.1.tar.gz | \ +curl -fsSL https://github.com/fredrikekre/jlpkg/releases/download/v1.6.0/jlpkg-v1.6.0.tar.gz | \ tar -xzC /usr/local/bin ``` This will extract the executable script `jlpkg` and place it in `/usr/local/bin`. @@ -138,7 +138,7 @@ When using the prebuilt script it is assumed that `julia` is also in your `PATH` The Bash completion file can also be downloaded from the repo. For example: ```bash curl -fsSL -o ~/.bash_completion.d/jlpkg-completion.bash \ - https://raw.githubusercontent.com/fredrikekre/jlpkg/v1.5.1/src/jlpkg-completion.bash + https://raw.githubusercontent.com/fredrikekre/jlpkg/v1.6.0/src/jlpkg-completion.bash ``` Make sure to source this file in your shell startup file. For example, add the following to `~/.bashrc`: ```bash diff --git a/src/jlpkg-completion.bash b/src/jlpkg-completion.bash index 308ac91..c4f51d4 100644 --- a/src/jlpkg-completion.bash +++ b/src/jlpkg-completion.bash @@ -1,6 +1,6 @@ #!/bin/bash -# Bash completion for jlpkg version 1.5.1. +# Bash completion for jlpkg version 1.6.0. # See https://github.com/fredrikekre/jlpkg for details. # Copyright (c) 2019-2022 Fredrik Ekre # SPDX-License-Identifier: MIT