Skip to content

Commit 3a738e2

Browse files
authored
chore(release): prepare 0.0.10
1 parent 40e28e1 commit 3a738e2

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/deployment/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ INSTATIC_IMAGE=ghcr.io/corebunch/instatic:latest docker compose -f compose.prod.
5757
Pin a semver tag for predictable upgrades:
5858

5959
```sh
60-
INSTATIC_IMAGE=ghcr.io/corebunch/instatic:0.0.9 docker compose -f compose.prod.yml -f compose.sqlite.yml up -d
60+
INSTATIC_IMAGE=ghcr.io/corebunch/instatic:0.0.10 docker compose -f compose.prod.yml -f compose.sqlite.yml up -d
6161
```
6262

6363
Source builds remain supported for contributors and release-candidate testing:

docs/deployment/docker-image.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ GHCR is the canonical image registry:
3636

3737
```sh
3838
docker pull ghcr.io/corebunch/instatic:latest
39-
docker pull ghcr.io/corebunch/instatic:0.0.9
39+
docker pull ghcr.io/corebunch/instatic:0.0.10
4040
```
4141

42-
The v0.0.9 published image is built for `linux/amd64`. Use it on Railway and x86_64 VPS/container hosts. ARM64 hosts should build from source for now, or wait for the native arm64 release job before pulling GHCR images directly.
42+
The v0.0.10 published image is built for `linux/amd64`. Use it on Railway and x86_64 VPS/container hosts. ARM64 hosts should build from source for now, or wait for the native arm64 release job before pulling GHCR images directly.
4343

4444
## Run With SQLite
4545

@@ -92,7 +92,7 @@ Replace `instatic:local` with `ghcr.io/corebunch/instatic:<tag>` when deploying
9292
Create an app service from Docker image source:
9393

9494
```txt
95-
ghcr.io/corebunch/instatic:0.0.9
95+
ghcr.io/corebunch/instatic:0.0.10
9696
```
9797

9898
Attach a Railway volume at `/app/storage`, set the health check path to `/health`, and set app variables:
@@ -109,7 +109,7 @@ RAILWAY_RUN_UID=0
109109

110110
`RAILWAY_RUN_UID=0` is required because Railway volumes are mounted as `root` and the published image otherwise runs as the non-root `bun` user. `PUBLIC_ORIGIN=https://${{RAILWAY_PUBLIC_DOMAIN}}` gives Instatic the public origin for its CSRF check now that Railway terminates HTTPS at the edge; the server would auto-detect the same value from `RAILWAY_PUBLIC_DOMAIN`, but setting it explicitly survives custom-domain edits.
111111

112-
Enable Railway Image Auto Updates when you want Railway to move the service forward automatically during a maintenance window. Use `:latest` for "always follow the newest image", or a semver tag such as `:0.0.9` if you want Railway's semver update controls.
112+
Enable Railway Image Auto Updates when you want Railway to move the service forward automatically during a maintenance window. Use `:latest` for "always follow the newest image", or a semver tag such as `:0.0.10` if you want Railway's semver update controls.
113113

114114
## Run On Render From The Image
115115

docs/deployment/railway.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Railway is the simplest managed target for Instatic because it can run the publi
1616
Both templates use:
1717

1818
```txt
19-
Image=ghcr.io/corebunch/instatic:0.0.9
19+
Image=ghcr.io/corebunch/instatic:0.0.10
2020
PORT=8080
2121
UPLOADS_DIR=/app/storage/uploads
2222
STATIC_DIR=/app/dist
@@ -32,7 +32,7 @@ Configure the app service health check path as `/health`. If Railway asks which
3232
Use a Docker image source for production installs:
3333

3434
```txt
35-
ghcr.io/corebunch/instatic:0.0.9
35+
ghcr.io/corebunch/instatic:0.0.10
3636
```
3737

3838
The image already runs:
@@ -48,7 +48,7 @@ Recommended service settings:
4848
| Setting | Value |
4949
|---|---|
5050
| Source | Docker image |
51-
| Image | `ghcr.io/corebunch/instatic:0.0.9` |
51+
| Image | `ghcr.io/corebunch/instatic:0.0.10` |
5252
| Public networking | HTTP enabled |
5353
| Target port | `8080` |
5454
| Healthcheck path | `/health` |
@@ -135,7 +135,7 @@ Railway volume backups apply to mounted volumes. For Postgres, use Railway's dat
135135
Enable Railway Image Auto Updates on the app service:
136136

137137
- Use `ghcr.io/corebunch/instatic:latest` when you want the service to redeploy whenever the `latest` tag moves.
138-
- Use a semver tag like `ghcr.io/corebunch/instatic:0.0.9` when you want Railway to stage matching patch or minor updates according to the service's auto-update preference.
138+
- Use a semver tag like `ghcr.io/corebunch/instatic:0.0.10` when you want Railway to stage matching patch or minor updates according to the service's auto-update preference.
139139

140140
Set a maintenance window before enabling automatic updates on sites with attached volumes.
141141

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "instatic",
33
"private": true,
4-
"version": "0.0.9",
4+
"version": "0.0.10",
55
"engines": {
66
"bun": ">=1.3.0 <1.4.0"
77
},

0 commit comments

Comments
 (0)