Skip to content

Commit b205218

Browse files
committed
Release v0.108.1
1 parent 4cc5812 commit b205218

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

DEPLOYMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Download and test a package for your platform:
137137
### Ubuntu/Debian
138138

139139
```bash
140-
wget https://github.com/programmablemd/packages/releases/download/v0.107.3/spry_jammy.deb
140+
wget https://github.com/programmablemd/packages/releases/download/v0.108.1/spry_jammy.deb
141141
sudo dpkg -i spry_jammy.deb
142142
spry --help
143143
```

QUICKSTART.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Get started with Spry DALEC packages in minutes!
1010

1111
```bash
1212
# Download the latest release
13-
wget https://github.com/programmablemd/packages/releases/download/v0.107.3/spry_0.107.3-ubuntu22.04u1_amd64.deb
13+
wget https://github.com/programmablemd/packages/releases/download/v0.108.1/spry_0.108.1-ubuntu22.04u1_amd64.deb
1414

1515
# Install
16-
sudo dpkg -i spry_0.107.3-ubuntu22.04u1_amd64.deb
16+
sudo dpkg -i spry_0.108.1-ubuntu22.04u1_amd64.deb
1717

1818
# Verify installation
1919
spry --version
@@ -23,7 +23,7 @@ spry --version
2323

2424
```bash
2525
# Download and extract
26-
wget https://github.com/programmablemd/packages/releases/download/v0.107.3/spry-macos.tar.gz
26+
wget https://github.com/programmablemd/packages/releases/download/v0.108.1/spry-macos.tar.gz
2727
tar -xzf spry-macos.tar.gz
2828

2929
# Move to PATH

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ See [HOMEBREW.md](HOMEBREW.md) for more details.
3434

3535
```bash
3636
# Ubuntu 22.04 (Jammy)
37-
wget https://github.com/programmablemd/packages/releases/download/v0.107.3/spry_0.107.3-ubuntu22.04u1_amd64.deb
38-
sudo dpkg -i spry_0.107.3-ubuntu22.04u1_amd64.deb
37+
wget https://github.com/programmablemd/packages/releases/download/v0.108.1/spry_0.108.1-ubuntu22.04u1_amd64.deb
38+
sudo dpkg -i spry_0.108.1-ubuntu22.04u1_amd64.deb
3939

4040
# Debian 12 (Bookworm)
41-
wget https://github.com/programmablemd/packages/releases/download/v0.107.3/spry_0.107.3-debian12u1_amd64.deb
42-
sudo dpkg -i spry_0.107.3-debian12u1_amd64.deb
41+
wget https://github.com/programmablemd/packages/releases/download/v0.108.1/spry_0.108.1-debian12u1_amd64.deb
42+
sudo dpkg -i spry_0.108.1-debian12u1_amd64.deb
4343
```
4444

4545
#### macOS (Manual Installation)
@@ -48,7 +48,7 @@ If you prefer not to use Homebrew:
4848

4949
```bash
5050
# Download and extract
51-
wget https://github.com/programmablemd/packages/releases/download/v0.107.3/spry-macos.tar.gz
51+
wget https://github.com/programmablemd/packages/releases/download/v0.108.1/spry-macos.tar.gz
5252
tar -xzf spry-macos.tar.gz
5353
sudo mv spry-macos /usr/local/bin/spry
5454
```
@@ -57,7 +57,7 @@ sudo mv spry-macos /usr/local/bin/spry
5757

5858
```powershell
5959
# Download the Windows package
60-
# https://github.com/programmablemd/packages/releases/download/v0.107.3/spry-windows.zip
60+
# https://github.com/programmablemd/packages/releases/download/v0.108.1/spry-windows.zip
6161
6262
# Extract the zip file and run:
6363
.\spry.exe --help

dalec-spry.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# DALEC config for packaging spry binary
33

44
name: spry
5-
version: 0.107.3
5+
version: 0.108.1
66
revision: 1
77
packager: Spry Team
88
vendor: Spry

man/spry.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH SPRY 1 "December 2025" "0.107.3" "Spry Manual"
1+
.TH SPRY 1 "December 2025" "0.108.1" "Spry Manual"
22
.SH NAME
33
spry \- Spry CLI - A declarative web application framework
44
.SH SYNOPSIS

spry.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env -S deno run -A --node-modules-dir=auto
22
// Use `deno run -A --watch` in the shebang if you're contributing / developing Spry itself.
33

4-
import { CLI } from "https://raw.githubusercontent.com/programmablemd/spry/refs/tags/v0.107.3/bin/spry.ts";
4+
import { CLI } from "https://raw.githubusercontent.com/programmablemd/spry/refs/tags/v0.108.1/bin/spry.ts";
55

66
await CLI({ defaultFiles: ["Spryfile.md"] }).parse(Deno.args);

0 commit comments

Comments
 (0)