Skip to content

Commit

Permalink
Bump CPython version following release on 20240319
Browse files Browse the repository at this point in the history
  • Loading branch information
pwalch committed Mar 27, 2024
1 parent 9a686bc commit 2bd0166
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sudo pacman -S --needed curl base-devel openssl zlib xz

```bash
mkdir -p ~/.local/bin && \
curl -sL -o ~/.local/bin/lonesnake https://github.com/pwalch/lonesnake/releases/download/0.29.0/lonesnake && \
curl -sL -o ~/.local/bin/lonesnake https://github.com/pwalch/lonesnake/releases/download/0.30.0/lonesnake && \
chmod u+x ~/.local/bin/lonesnake
```

Expand Down Expand Up @@ -369,7 +369,7 @@ Before using `lonesnake-kit`, make sure to read the instructions for vanilla `lo

```bash
mkdir -p ~/.local/bin && \
curl -sL -o ~/.local/bin/lonesnake-kit https://github.com/pwalch/lonesnake/releases/download/0.29.0/lonesnake-kit && \
curl -sL -o ~/.local/bin/lonesnake-kit https://github.com/pwalch/lonesnake/releases/download/0.30.0/lonesnake-kit && \
chmod u+x ~/.local/bin/lonesnake-kit
```

Expand Down
8 changes: 4 additions & 4 deletions lonesnake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

set -euo pipefail

readonly PROG_VERSION="0.29.0"
readonly PROG_VERSION="0.30.0"

PROG_NAME="$(basename "$0")"
readonly PROG_NAME
Expand All @@ -20,9 +20,9 @@ readonly CACHE_DIR="$HOME/.cache/lonesnake"

# Latest patch version number for each supported Python minor version
readonly LATEST_PATCH_CP37="17"
readonly LATEST_PATCH_CP38="18"
readonly LATEST_PATCH_CP39="18"
readonly LATEST_PATCH_CP310="13"
readonly LATEST_PATCH_CP38="19"
readonly LATEST_PATCH_CP39="19"
readonly LATEST_PATCH_CP310="14"
readonly LATEST_PATCH_CP311="8"
readonly LATEST_PATCH_CP312="2"

Expand Down
2 changes: 1 addition & 1 deletion lonesnake-kit
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
set -euo pipefail

PROG_NAME="$(basename "$0")"
readonly PROG_VERSION="0.29.0"
readonly PROG_VERSION="0.30.0"

readonly STANDALONE_DIRNAME=".lonesnake"

Expand Down

0 comments on commit 2bd0166

Please sign in to comment.