diff --git a/Project.toml b/Project.toml index a9a7c5c..a40ce23 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "jlpkg" uuid = "c4c688b2-6cc8-11e9-1c12-6d20b663313d" -version = "1.3.0" +version = "1.3.1" [compat] julia = "1" diff --git a/README.md b/README.md index e17a7a0..5c0b0bb 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,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.3.0/jlpkg-v1.3.0.tar.gz | \ +$ curl -fsSL https://github.com/fredrikekre/jlpkg/releases/download/v1.3.1/jlpkg-v1.3.1.tar.gz | \ tar -xzC /usr/local/bin ``` This will extract the executable script `jlpkg` and place it in `/usr/local/bin`. @@ -133,7 +133,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.3.0/src/jlpkg-completion.bash + https://raw.githubusercontent.com/fredrikekre/jlpkg/v1.3.1/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/cli.jl b/src/cli.jl index ff0d06c..8965cfe 100644 --- a/src/cli.jl +++ b/src/cli.jl @@ -30,7 +30,7 @@ end # Parse --version option if "--version" in JLPKG_ARGS - println(stdout, "jlpkg version 1.3.0, julia version $(VERSION)") + println(stdout, "jlpkg version 1.3.1, julia version $(VERSION)") exit(0) end diff --git a/src/jlpkg-completion.bash b/src/jlpkg-completion.bash index 53754a8..a048907 100644 --- a/src/jlpkg-completion.bash +++ b/src/jlpkg-completion.bash @@ -1,6 +1,6 @@ #!/bin/bash -# Bash completion for jlpkg version 1.3.0. +# Bash completion for jlpkg version 1.3.1. # See https://github.com/fredrikekre/jlpkg for details. # Notes to self: