Skip to content

Commit 0720d58

Browse files
author
github-actions
committed
Release v1.7.4
1 parent 6f16249 commit 0720d58

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

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/v1.7.0/spry_jammy.deb
140+
wget https://github.com/programmablemd/packages/releases/download/v1.7.4/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/v1.7.0/spry_1.7.0-ubuntu22.04u1_amd64.deb
13+
wget https://github.com/programmablemd/packages/releases/download/v1.7.4/spry_1.7.4-ubuntu22.04u1_amd64.deb
1414

1515
# Install
16-
sudo dpkg -i spry_1.7.0-ubuntu22.04u1_amd64.deb
16+
sudo dpkg -i spry_1.7.4-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/v1.7.0/spry-macos.tar.gz
26+
wget https://github.com/programmablemd/packages/releases/download/v1.7.4/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 @@ For additional Homebrew installation options, including installing specific vers
3434

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

4040
# Debian 12 (Bookworm)
41-
wget https://github.com/programmablemd/packages/releases/download/v1.7.0/spry_1.7.0-debian12u1_amd64.deb
42-
sudo dpkg -i spry_1.7.0-debian12u1_amd64.deb
41+
wget https://github.com/programmablemd/packages/releases/download/v1.7.4/spry_1.7.4-debian12u1_amd64.deb
42+
sudo dpkg -i spry_1.7.4-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/v1.7.0/spry-macos.tar.gz
51+
wget https://github.com/programmablemd/packages/releases/download/v1.7.4/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/v1.7.0/spry-windows.zip
60+
# https://github.com/programmablemd/packages/releases/download/v1.7.4/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: 1.7.0
5+
version: 1.7.4
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 "January 2026" "1.7.0" "Spry Manual"
1+
.TH SPRY 1 "January 2026" "1.7.4" "Spry Manual"
22
.SH NAME
33
spry \- Spry CLI - A declarative web application framework
44
.SH SYNOPSIS

spry.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// Monkey-patch fetch to support GH_TOKEN and serving web-ui from embedded assets
44
const BAKE_GH_TOKEN = "__BAKED_GH_TOKEN__";
5-
const VERSION = "1.7.0";
5+
const VERSION = "1.7.4";
66
const originalFetch = globalThis.fetch;
77
globalThis.fetch = async (input: string | Request | URL, init?: RequestInit) => {
88
const url = typeof input === "string" ? input : (input instanceof URL ? input.toString() : input.url);
@@ -39,7 +39,7 @@ globalThis.fetch = async (input: string | Request | URL, init?: RequestInit) =>
3939
};
4040

4141
// import { CLI } from "https://raw.githubusercontent.com/sijucj/spry_private/v0.111.0/bin/spry.ts";
42-
import { CLI } from "https://raw.githubusercontent.com/programmablemd/spry/refs/tags/v1.7.0/bin/spry.ts";
42+
import { CLI } from "https://raw.githubusercontent.com/programmablemd/spry/refs/tags/v1.7.4/bin/spry.ts";
4343

4444
const cli = await CLI({ defaultFiles: ["Spryfile.md"] });
4545
cli.getVersion = () => VERSION;

0 commit comments

Comments
 (0)