From 608d1e039607e532dbe18cfaf0e252afb9eb936a Mon Sep 17 00:00:00 2001
From: l5y <220195275+l5yth@users.noreply.github.com>
Date: Sat, 20 Sep 2025 20:59:21 +0200
Subject: [PATCH] bump version to 0.2.1 (#134)
---
web/app.rb | 2 +-
web/spec/app_spec.rb | 2 +-
web/views/index.erb | 9 +++++----
3 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/web/app.rb b/web/app.rb
index 27f72b7..a068f1e 100644
--- a/web/app.rb
+++ b/web/app.rb
@@ -39,7 +39,7 @@ MAX_JSON_BODY_BYTES = begin
rescue ArgumentError
DEFAULT_MAX_JSON_BODY_BYTES
end
-VERSION_FALLBACK = "v0.2.0"
+VERSION_FALLBACK = "v0.2.1"
def determine_app_version
repo_root = File.expand_path("..", __dir__)
diff --git a/web/spec/app_spec.rb b/web/spec/app_spec.rb
index 725857e..8453a0f 100644
--- a/web/spec/app_spec.rb
+++ b/web/spec/app_spec.rb
@@ -187,7 +187,7 @@ RSpec.describe "Potato Mesh Sinatra app" do
it "includes the application version in the footer" do
get "/"
- expect(last_response.body).to include("Version: #{APP_VERSION}")
+ expect(last_response.body).to include("#{APP_VERSION}")
end
end
diff --git a/web/views/index.erb b/web/views/index.erb
index f1b2250..a6d40eb 100644
--- a/web/views/index.erb
+++ b/web/views/index.erb
@@ -321,14 +321,15 @@