Skip to content

Commit 06c9ade

Browse files
committed
Bump version number to 1.0.0, following years of use in production
1 parent e575bd1 commit 06c9ade

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ sudo pacman -S --needed curl base-devel openssl zlib xz
5757

5858
```bash
5959
mkdir -p ~/.local/bin && \
60-
curl -sL -o ~/.local/bin/lonesnake https://raw.githubusercontent.com/pwalch/lonesnake/0.46.0/lonesnake && \
60+
curl -sL -o ~/.local/bin/lonesnake https://raw.githubusercontent.com/pwalch/lonesnake/1.0.0/lonesnake && \
6161
chmod u+x ~/.local/bin/lonesnake
6262
```
6363

@@ -72,10 +72,10 @@ mkdir -p ~/.local/bin && \
7272

7373
- `lonesnake`
7474
- generates an environment with the latest CPython version, in the `.lonesnake` directory at the root of the current working directory
75-
- `lonesnake --py 3.11`
76-
- same, but with the latest patch of CPython 3.11
77-
- `lonesnake --py 3.11.0`
78-
- same, but with exactly CPython 3.11.0
75+
- `lonesnake --py 3.13`
76+
- same, but with the latest patch of CPython 3.13
77+
- `lonesnake --py 3.13.0`
78+
- same, but with exactly CPython 3.13.0
7979

8080
If the `.lonesnake` directory already exists, `lonesnake` asks for confirmation before deleting it.
8181

@@ -171,7 +171,7 @@ EOM
171171
</details>
172172

173173
<details>
174-
<summary>To show a prefix in your shell prompt indicating an active lonesnake venv (e.g. <code>🐍venv-3.11.0</code>), take inspiration from this example code for your <code>~/.bashrc</code> or <code>~/.zshrc</code>.</summary>
174+
<summary>To show a prefix in your shell prompt indicating an active lonesnake venv (e.g. <code>🐍venv-3.13.0</code>), take inspiration from this example code for your <code>~/.bashrc</code> or <code>~/.zshrc</code>.</summary>
175175

176176
```bash
177177
show_lonesnake_venv_prefix () {
@@ -365,7 +365,7 @@ Before using `lonesnake-kit`, make sure to read the instructions for vanilla `lo
365365

366366
```bash
367367
mkdir -p ~/.local/bin && \
368-
curl -sL -o ~/.local/bin/lonesnake-kit https://raw.githubusercontent.com/pwalch/lonesnake/0.46.0/helpers/lonesnake-kit && \
368+
curl -sL -o ~/.local/bin/lonesnake-kit https://raw.githubusercontent.com/pwalch/lonesnake/1.0.0/helpers/lonesnake-kit && \
369369
chmod u+x ~/.local/bin/lonesnake-kit
370370
```
371371

@@ -379,7 +379,7 @@ This `.lonesnake` directory includes a Python interpreter built from [source](ht
379379
- `interpreter` directory includes `usr/local/bin`, `usr/local/include`, etc...
380380
- `venv` directory includes `bin`, `include`, `pyvenv.cfg` etc... It is created by the interpreter above.
381381

382-
Behind the scenes, `lonesnake` takes advantage of cache directories for the CPython source code and build files, located at `~/.cache/lonesnake/X.Y.Z/` where `X.Y.Z` is the Python version (e.g. `3.11.0`). Cache directories enable us to skip the compilation step when CPython was already compiled for the requested version.
382+
Behind the scenes, `lonesnake` takes advantage of cache directories for the CPython source code and build files, located at `~/.cache/lonesnake/X.Y.Z/` where `X.Y.Z` is the Python version (e.g. `3.13.0`). Cache directories enable us to skip the compilation step when CPython was already compiled for the requested version.
383383

384384
## lonesnake environment construction
385385

helpers/lonesnake-kit

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
set -euo pipefail
88

99
PROG_NAME="$(basename "$0")"
10-
readonly PROG_VERSION="0.46.0"
10+
readonly PROG_VERSION="1.0.0"
1111

1212
readonly STANDALONE_DIRNAME=".lonesnake"
1313

@@ -57,7 +57,7 @@ echo -e "${CLR_BOLD}${PROG_NAME}${CLR_END} project
5757
Usage: ${CLR_BOLD}${PROG_NAME}${CLR_END} project ${CLR_BOLD}[--direnv]${CLR_END} ${CLR_BOLD}[--vscode]${CLR_END} [${CLR_BOLD}--py${CLR_END} ${CLR_UDL}VERSION${CLR_END}]
5858
Examples:
5959
${PROG_NAME} project --direnv
60-
${PROG_NAME} project --direnv --vscode --py 3.11
60+
${PROG_NAME} project --direnv --vscode --py 3.13
6161
6262
Creates a new lonesnake environment, then adds the following
6363
configurations if requested:

lonesnake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
set -euo pipefail
88

9-
readonly PROG_VERSION="0.46.0"
9+
readonly PROG_VERSION="1.0.0"
1010

1111
PROG_NAME="$(basename "$0")"
1212
readonly PROG_NAME

0 commit comments

Comments
 (0)