Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
fnogatz committed Jul 30, 2021
1 parent 5835eee commit 96069c2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ 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.2/install.sh) using cURL:
To install or update swivm, you can use the [install script](https://github.com/fnogatz/swivm/blob/v1.2.3/install.sh) using cURL:

curl -o- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.2/install.sh | bash
curl -o- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.3/install.sh | bash

or Wget:

wget -qO- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.2/install.sh | bash
wget -qO- https://raw.githubusercontent.com/fnogatz/swivm/v1.2.3/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.2"
echo "v1.2.3"
}

#
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.2",
"version": "1.2.3",
"description": "SWI-Prolog Version Manager - Bash script to manage multiple active SWI-Prolog versions",
"scripts": {},
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions swivm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ swivm_ls() {
\\#${SEARCH_PATTERN}# !d;
" \
-e 's#^\([^/]\{1,\}\)/\(.*\)$#\2.\1#;' \
| command sort -t. -u -k 1.2.2n -k 2,2n -k 3,3n \
| command sort -t. -u -k 1.2.3n -k 2,2n -k 3,3n \
)"
fi
fi
Expand Down Expand Up @@ -2001,7 +2001,7 @@ swivm() {
swivm_remote_version "${1}"
;;
"--version" )
echo "1.2.2"
echo "1.2.3"
;;
"unload")
swivm deactivate >/dev/null 2>&1
Expand Down

0 comments on commit 96069c2

Please sign in to comment.