From 3e936b63970af0c81e2e66848bc3240031480f54 Mon Sep 17 00:00:00 2001 From: michelecontra Date: Mon, 11 Sep 2023 11:37:15 +0200 Subject: [PATCH 1/2] Update app to V2 --- version/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/app.js b/version/app.js index ea8302397..2785f2525 100644 --- a/version/app.js +++ b/version/app.js @@ -5,7 +5,7 @@ var response; app.get('/', function (req, res) { - response = 'This is version 1 of the app.' + '\n'; + response = 'This is version 2 of the app.' + '\n'; //send the response to the client res.send(response); From fa009810749ffebd8d5a4cf9dc53b90aad6b9512 Mon Sep 17 00:00:00 2001 From: michelecontra Date: Mon, 11 Sep 2023 11:46:38 +0200 Subject: [PATCH 2/2] Update application to V3 --- version/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/app.js b/version/app.js index 2785f2525..4833dd74f 100644 --- a/version/app.js +++ b/version/app.js @@ -5,7 +5,7 @@ var response; app.get('/', function (req, res) { - response = 'This is version 2 of the app.' + '\n'; + response = 'This is version 3 of the app.' + '\n'; //send the response to the client res.send(response);