diff --git a/app/ios/Flutter/AppFrameworkInfo.plist b/app/ios/Flutter/AppFrameworkInfo.plist
index e464d3e..359c0e5 100644
--- a/app/ios/Flutter/AppFrameworkInfo.plist
+++ b/app/ios/Flutter/AppFrameworkInfo.plist
@@ -15,11 +15,11 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 0.5.8
+ 0.5.9
CFBundleSignature
????
CFBundleVersion
- 0.5.8
+ 0.5.9
MinimumOSVersion
14.0
diff --git a/app/pubspec.yaml b/app/pubspec.yaml
index 6ec0f64..eedb0da 100644
--- a/app/pubspec.yaml
+++ b/app/pubspec.yaml
@@ -1,7 +1,7 @@
name: potato_mesh_reader
description: Meshtastic Reader — read-only view for PotatoMesh messages.
publish_to: "none"
-version: 0.5.8
+version: 0.5.9
environment:
sdk: ">=3.4.0 <4.0.0"
diff --git a/data/__init__.py b/data/__init__.py
index 4859451..884638f 100644
--- a/data/__init__.py
+++ b/data/__init__.py
@@ -18,7 +18,7 @@ The ``data.mesh`` module exposes helpers for reading Meshtastic node and
message information before forwarding it to the accompanying web application.
"""
-VERSION = "0.5.8"
+VERSION = "0.5.9"
"""Semantic version identifier shared with the dashboard and front-end."""
__version__ = VERSION
diff --git a/matrix/Cargo.lock b/matrix/Cargo.lock
index f31312b..d7bdda6 100644
--- a/matrix/Cargo.lock
+++ b/matrix/Cargo.lock
@@ -814,7 +814,7 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
[[package]]
name = "potatomesh-matrix-bridge"
-version = "0.5.8"
+version = "0.5.9"
dependencies = [
"anyhow",
"mockito",
diff --git a/matrix/Cargo.toml b/matrix/Cargo.toml
index d7ab19c..185e0a3 100644
--- a/matrix/Cargo.toml
+++ b/matrix/Cargo.toml
@@ -14,7 +14,7 @@
[package]
name = "potatomesh-matrix-bridge"
-version = "0.5.8"
+version = "0.5.9"
edition = "2021"
[dependencies]
diff --git a/web/lib/potato_mesh/config.rb b/web/lib/potato_mesh/config.rb
index 8101b2e..1b9a1d9 100644
--- a/web/lib/potato_mesh/config.rb
+++ b/web/lib/potato_mesh/config.rb
@@ -176,7 +176,7 @@ module PotatoMesh
#
# @return [String] semantic version identifier.
def version_fallback
- "0.5.8"
+ "0.5.9"
end
# Default refresh interval for frontend polling routines.
diff --git a/web/package-lock.json b/web/package-lock.json
index e50e5f5..3b0b70f 100644
--- a/web/package-lock.json
+++ b/web/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "potato-mesh",
- "version": "0.5.8",
+ "version": "0.5.9",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "potato-mesh",
- "version": "0.5.8",
+ "version": "0.5.9",
"devDependencies": {
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-report": "^3.0.1",
diff --git a/web/package.json b/web/package.json
index 0db91d8..086f9d8 100644
--- a/web/package.json
+++ b/web/package.json
@@ -1,6 +1,6 @@
{
"name": "potato-mesh",
- "version": "0.5.8",
+ "version": "0.5.9",
"type": "module",
"private": true,
"scripts": {
diff --git a/web/spec/ingestors_spec.rb b/web/spec/ingestors_spec.rb
index f5f24c9..a5a4475 100644
--- a/web/spec/ingestors_spec.rb
+++ b/web/spec/ingestors_spec.rb
@@ -61,7 +61,7 @@ RSpec.describe "Ingestor endpoints" do
node_id: "!abc12345",
start_time: now - 120,
last_seen_time: now - 60,
- version: "0.5.8",
+ version: "0.5.9",
lora_freq: 915,
modem_preset: "LongFast",
}.merge(overrides)
@@ -133,7 +133,7 @@ RSpec.describe "Ingestor endpoints" do
with_db do |db|
db.execute(
"INSERT INTO ingestors(node_id, start_time, last_seen_time, version) VALUES(?,?,?,?)",
- ["!fresh000", now - 100, now - 10, "0.5.8"],
+ ["!fresh000", now - 100, now - 10, "0.5.9"],
)
db.execute(
"INSERT INTO ingestors(node_id, start_time, last_seen_time, version) VALUES(?,?,?,?)",
@@ -141,7 +141,7 @@ RSpec.describe "Ingestor endpoints" do
)
db.execute(
"INSERT INTO ingestors(node_id, start_time, last_seen_time, version, lora_freq, modem_preset) VALUES(?,?,?,?,?,?)",
- ["!rich000", now - 200, now - 100, "0.5.8", 915, "MediumFast"],
+ ["!rich000", now - 200, now - 100, "0.5.9", 915, "MediumFast"],
)
end
@@ -173,7 +173,7 @@ RSpec.describe "Ingestor endpoints" do
)
db.execute(
"INSERT INTO ingestors(node_id, start_time, last_seen_time, version) VALUES(?,?,?,?)",
- ["!new-ingestor", now - 60, now - 30, "0.5.8"],
+ ["!new-ingestor", now - 60, now - 30, "0.5.9"],
)
end