diff --git a/omnyserver_web/CHANGELOG.md b/omnyserver_web/CHANGELOG.md index f616a86..c860e98 100644 --- a/omnyserver_web/CHANGELOG.md +++ b/omnyserver_web/CHANGELOG.md @@ -1,3 +1,10 @@ +## 0.2.3 + +- Rebuilt against **OmnyServer 0.15.1** — the login footer now reads + `Dashboard v0.2.3 · OmnyServer v0.15.1`. The dependency floor moves to + `^0.15.0` (the deploy path-overrides it to the server in this repo, so the + dashboard ships beside the API it was built with). + ## 0.2.2 - **The login screen now shows its versions** — the dashboard build and the diff --git a/omnyserver_web/lib/version.dart b/omnyserver_web/lib/version.dart index c1f7fda..7c1b2a4 100644 --- a/omnyserver_web/lib/version.dart +++ b/omnyserver_web/lib/version.dart @@ -4,7 +4,7 @@ import 'package:omnyserver/omnyserver_client_web.dart' show omnyServerVersion; /// /// The Pages deploy builds against the server in this repo, so this and /// [omnyServerVersion] always move together. -const String omnyServerWebVersion = '0.2.2'; +const String omnyServerWebVersion = '0.2.3'; /// The one version line shown in the UI: this dashboard build, and the /// OmnyServer version it was built against. diff --git a/omnyserver_web/pubspec.yaml b/omnyserver_web/pubspec.yaml index 53c13c3..27a433a 100644 --- a/omnyserver_web/pubspec.yaml +++ b/omnyserver_web/pubspec.yaml @@ -3,7 +3,7 @@ description: >- Browser dashboard for an OmnyServer Hub — see the fleet, watch live node status, run formulas and presets, and open a shell on any node. Installable PWA, no custom backend. -version: 0.2.2 +version: 0.2.3 repository: https://github.com/OmnyGrid/omnyserver publish_to: none @@ -11,12 +11,12 @@ environment: sdk: ^3.12.2 dependencies: - # The Hub's REST client and the entities it decodes, browser-safe. 0.14.0 is - # the version that exposes `omnyserver_client_web.dart` and the transport seam - # this app is built on. CI and the Pages deploy override this with a path + # The Hub's REST client and the entities it decodes, browser-safe. 0.15.0 is + # the baseline the dashboard targets (the version footer reads its + # `omnyServerVersion`). CI and the Pages deploy override this with a path # dependency on `..`, so the dashboard always ships against the API it is # released beside. - omnyserver: ^0.14.0 + omnyserver: ^0.15.0 # The shared web foundation: state primitives, storage, router, UI kit — and # the terminal, so a node's shell opens here instead of being rebuilt. omnyshell_web: ^1.15.0