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 @@