blackopsrepl commited on
Commit
1fc80a7
Β·
1 Parent(s): 0e480f9

chore(release): bump deliveries to 1.0.1

Browse files

Update the solverforge-deliveries app package version from 1.0.0 to 1.0.1 after the SolverForge runtime and UI dependency refresh. The Cargo manifest and lockfile now agree on the release version that is reported by the app's /info endpoint and Makefile banner.

Align README, WIREFRAME, AGENTS, and the Makefile header with the same app version so the release surface does not continue to describe the previous 1.0.0 package line.

Files changed (6) hide show
  1. AGENTS.md +1 -1
  2. Cargo.lock +1 -1
  3. Cargo.toml +1 -1
  4. Makefile +1 -1
  5. README.md +1 -1
  6. WIREFRAME.md +2 -2
AGENTS.md CHANGED
@@ -3,7 +3,7 @@
3
  ## Project Structure And Naming
4
 
5
  This repo follows the current `solverforge-cli` app shape. The app package
6
- version is `1.0.0`, and the release binary is `solverforge_deliveries`.
7
 
8
  - `src/domain/mod.rs` owns the `solverforge::planning_model!` manifest.
9
  - `src/domain/plan.rs` owns the `Plan` planning solution.
 
3
  ## Project Structure And Naming
4
 
5
  This repo follows the current `solverforge-cli` app shape. The app package
6
+ version is `1.0.1`, and the release binary is `solverforge_deliveries`.
7
 
8
  - `src/domain/mod.rs` owns the `solverforge::planning_model!` manifest.
9
  - `src/domain/plan.rs` owns the `Plan` planning solution.
Cargo.lock CHANGED
@@ -1567,7 +1567,7 @@ dependencies = [
1567
 
1568
  [[package]]
1569
  name = "solverforge-deliveries"
1570
- version = "1.0.0"
1571
  dependencies = [
1572
  "axum",
1573
  "http-body-util",
 
1567
 
1568
  [[package]]
1569
  name = "solverforge-deliveries"
1570
+ version = "1.0.1"
1571
  dependencies = [
1572
  "axum",
1573
  "http-body-util",
Cargo.toml CHANGED
@@ -1,6 +1,6 @@
1
  [package]
2
  name = "solverforge-deliveries"
3
- version = "1.0.0"
4
  edition = "2021"
5
  rust-version = "1.95"
6
  description = "Constraint optimizer built with SolverForge"
 
1
  [package]
2
  name = "solverforge-deliveries"
3
+ version = "1.0.1"
4
  edition = "2021"
5
  rust-version = "1.95"
6
  description = "Constraint optimizer built with SolverForge"
Makefile CHANGED
@@ -1,4 +1,4 @@
1
- # SolverForge Deliveries Makefile v1.0.0
2
  # Rust + frontend + Space-oriented local build system.
3
  #
4
  # This app is validated for local development and Docker-based Hugging Face
 
1
+ # SolverForge Deliveries Makefile v1.0.1
2
  # Rust + frontend + Space-oriented local build system.
3
  #
4
  # This app is validated for local development and Docker-based Hugging Face
README.md CHANGED
@@ -37,7 +37,7 @@ vehicle should visit each delivery and in what order?"
37
 
38
  ## Current Dependency Shape
39
 
40
- The app package version is `1.0.0`; the release binary is
41
  `solverforge_deliveries`.
42
 
43
  This repo requires Rust `1.95` and is configured against published crates.io
 
37
 
38
  ## Current Dependency Shape
39
 
40
+ The app package version is `1.0.1`; the release binary is
41
  `solverforge_deliveries`.
42
 
43
  This repo requires Rust `1.95` and is configured against published crates.io
WIREFRAME.md CHANGED
@@ -20,7 +20,7 @@ pieces fit together and where each responsibility lives.
20
 
21
  ## What This Repo Is Teaching
22
 
23
- This repo is a complete `solverforge-deliveries` `1.0.0` list-variable
24
  SolverForge app for delivery routing.
25
 
26
  It shows how to combine:
@@ -80,7 +80,7 @@ It shows how to combine:
80
  ```text
81
  .
82
  β”œβ”€β”€ Cargo.toml
83
- β”‚ Rust 1.95 crate metadata for app version 1.0.0 and published crates.io
84
  β”‚ dependency pins.
85
  β”œβ”€β”€ solver.toml
86
  β”‚ Embedded search policy for construction heuristics and local search.
 
20
 
21
  ## What This Repo Is Teaching
22
 
23
+ This repo is a complete `solverforge-deliveries` `1.0.1` list-variable
24
  SolverForge app for delivery routing.
25
 
26
  It shows how to combine:
 
80
  ```text
81
  .
82
  β”œβ”€β”€ Cargo.toml
83
+ β”‚ Rust 1.95 crate metadata for app version 1.0.1 and published crates.io
84
  β”‚ dependency pins.
85
  β”œβ”€β”€ solver.toml
86
  β”‚ Embedded search policy for construction heuristics and local search.