Skip to content

Commit d6d736c

Browse files
enriquephlclaude
andauthored
chore(release): v0.5.0 (#59)
Bumps workspace + 5 path-dep pins from 0.4.3-dev to 0.5.0, regenerates Cargo.lock + openapi.json, and updates README docker-pull examples. Why 0.5.0 (not 0.4.30): crates.io requires strictly-increasing semver and the previous published crates land at 0.4.21 — stylized 0.4.3 would fail the registry's ordering check. v0.5 jumps cleanly past and also reflects the size of this cut (new metadata audit surface, new schema columns from migrations 0019 + 0020, prompt rewrite, short-term memory). Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent b3759c3 commit d6d736c

7 files changed

Lines changed: 13 additions & 13 deletions

File tree

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.4.3-dev"
6+
version = "0.5.0"
77
edition = "2021"
88
license = "AGPL-3.0-only"
99
repository = "https://github.com/etherfunlab/eros-engine"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ eros-engine-llm = "0.4" # only if you want the OpenRouter + Voyage clients
133133
`linux/amd64` images for `eros-engine-server` are published to GitHub Container Registry on every `v*` tag (need arm64? build it yourself from `docker/Dockerfile`):
134134

135135
```bash
136-
docker pull ghcr.io/etherfunlab/eros-engine:0.4.1
136+
docker pull ghcr.io/etherfunlab/eros-engine:0.5.0
137137
# or track the latest tagged release
138138
docker pull ghcr.io/etherfunlab/eros-engine:latest
139139
```
@@ -142,7 +142,7 @@ Minimal run (you bring Postgres + your own `.env`):
142142

143143
```bash
144144
docker run --rm -p 8080:8080 --env-file .env \
145-
ghcr.io/etherfunlab/eros-engine:0.4.1 serve
145+
ghcr.io/etherfunlab/eros-engine:0.5.0 serve
146146
```
147147

148148
The `docker/Dockerfile` is the same artifact used to build this image. Deploy it on any container host.

crates/eros-engine-llm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["companion", "openrouter", "voyage", "embeddings", "llm"]
1212
categories = ["api-bindings"]
1313

1414
[dependencies]
15-
eros-engine-core = { path = "../eros-engine-core", version = "0.4.3-dev" }
15+
eros-engine-core = { path = "../eros-engine-core", version = "0.5.0" }
1616
serde = { workspace = true }
1717
serde_json = { workspace = true }
1818
reqwest = { workspace = true }

crates/eros-engine-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ name = "eros-engine"
1010
path = "src/main.rs"
1111

1212
[dependencies]
13-
eros-engine-core = { path = "../eros-engine-core", version = "0.4.3-dev" }
14-
eros-engine-llm = { path = "../eros-engine-llm", version = "0.4.3-dev" }
15-
eros-engine-store = { path = "../eros-engine-store", version = "0.4.3-dev" }
13+
eros-engine-core = { path = "../eros-engine-core", version = "0.5.0" }
14+
eros-engine-llm = { path = "../eros-engine-llm", version = "0.5.0" }
15+
eros-engine-store = { path = "../eros-engine-store", version = "0.5.0" }
1616
axum = { workspace = true }
1717
tokio = { workspace = true }
1818
serde = { workspace = true }

crates/eros-engine-server/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"name": "AGPL-3.0-only",
88
"identifier": "AGPL-3.0-only"
99
},
10-
"version": "0.4.3-dev"
10+
"version": "0.5.0"
1111
},
1212
"servers": [
1313
{

crates/eros-engine-store/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ keywords = ["companion", "memory", "pgvector", "postgres", "sqlx"]
1212
categories = ["database"]
1313

1414
[dependencies]
15-
eros-engine-core = { path = "../eros-engine-core", version = "0.4.3-dev" }
15+
eros-engine-core = { path = "../eros-engine-core", version = "0.5.0" }
1616
sqlx = { workspace = true }
1717
serde = { workspace = true }
1818
serde_json = { workspace = true }

0 commit comments

Comments
 (0)