Skip to content

Commit

Permalink
v1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fnogatz committed Aug 1, 2021
1 parent a68c914 commit 9a10e00
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ Building SWI-Prolog v7.7.20+ requires cmake version 3.5 or later.

### Install script

To install or update swivm, you can use the [install script](https://github.com/fnogatz/swivm/blob/v1.2.5/install.sh) using cURL:
To install or update swivm, you can use the [install script](https://github.com/fnogatz/swivm/blob/v1.2.6/install.sh) using cURL:

```sh
curl -o- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.5/install.sh | bash
curl -o- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.6/install.sh | bash
```

or Wget:

```sh
wget -qO- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.5/install.sh | bash
wget -qO- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.6/install.sh | bash
```

<sub>The script clones the swivm repository to `~/.swivm/` and adds the source line to your profile (`~/.bash_profile`, `~/.zshrc` or `~/.profile`).</sub>
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [ -z "$SWIVM_DIR" ]; then
fi

swivm_latest_version() {
echo "v1.2.5"
echo "v1.2.6"
}

#
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "swivm",
"version": "1.2.5",
"version": "1.2.6",
"description": "SWI-Prolog Version Manager - Bash script to manage multiple active SWI-Prolog versions",
"scripts": {},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion swivm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2001,7 +2001,7 @@ swivm() {
swivm_remote_version "${1}"
;;
"--version" )
echo "1.2.5"
echo "1.2.6"
;;
"unload")
swivm deactivate >/dev/null 2>&1
Expand Down

0 comments on commit 9a10e00

Please sign in to comment.