Skip to content

Commit

Permalink
Modifying version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
pdohogne-magento committed Aug 3, 2021
1 parent 517fa8f commit 3b3ea39
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Model/Layout/LayoutPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public function afterGenerateElements(\Magento\Framework\View\Layout $subject)
public function afterGetOutput(\Magento\Framework\View\Layout $subject, $result) // @codingStandardsIgnoreLine - unused parameter
{
if ($this->config->getType() == Config::FASTLY) {
$this->response->setHeader("Fastly-Module-Enabled", "1.2.161", true);
$this->response->setHeader("Fastly-Module-Enabled", "1.2.162-beta1", true);
}

return $result;
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.161
1.2.162-beta1
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"zordius/lightncandy": "^1.2"
},
"type": "magento2-module",
"version": "1.2.161",
"version": "1.2.162-beta1",
"license": "BSD-3-Clause",
"autoload": {
"files": [ "registration.php" ],
Expand Down
2 changes: 1 addition & 1 deletion etc/vcl_snippets/deliver.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

# Add an easy way to see whether custom Fastly VCL has been uploaded
if ( req.http.Fastly-Debug ) {
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.161";
set resp.http.Fastly-Magento-VCL-Uploaded = "1.2.162-beta1";
} else {
remove resp.http.Fastly-Module-Enabled;
remove resp.http.fastly-page-cacheable;
Expand Down
2 changes: 1 addition & 1 deletion etc/vcl_snippets/miss.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
unset bereq.http.Accept-Encoding;

# Send VCL version uploaded to the backend
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.161";
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.162-beta1";
2 changes: 1 addition & 1 deletion etc/vcl_snippets/pass.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
}

# Send VCL version uploaded to the backend
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.161";
set bereq.http.Fastly-Magento-VCL-Uploaded = "1.2.162-beta1";

0 comments on commit 3b3ea39

Please sign in to comment.