Skip to content

Commit b16ede9

Browse files
committed
Merge branch '12.0' into 12.1
2 parents 425cccc + 71bb0a9 commit b16ede9

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 12.0.3, 12.1.1 <small>(2026-03-01)</small>
2+
3+
#### Bugfixes
4+
5+
* Fixed an error in the 429 error template.
6+
7+
--------------------------------------------------------
8+
19
### 12.1.0 <small>(2026-02-20)</small>
210

311
#### New
@@ -22,7 +30,6 @@
2230

2331
--------------------------------------------------------
2432

25-
2633
### 11.4.6, 12.0.2 <small>(2026-01-08)</small>
2734

2835
#### Bugfixes

src/mako/Mako.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ final class Mako
1515
/**
1616
* Mako version.
1717
*/
18-
public const string VERSION = '12.1.0';
18+
public const string VERSION = '12.1.1';
1919

2020
/**
2121
* Mako major version.
@@ -30,5 +30,5 @@ final class Mako
3030
/**
3131
* Mako patch version.
3232
*/
33-
public const int VERSION_PATCH = 0;
33+
public const int VERSION_PATCH = 1;
3434
}

src/mako/error/handlers/web/views/429.tpl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
&& $retryAfter->getTimezone()->getName() !== 'UTC'
1616
&& ($retryAfter instanceof DateTime || $retryAfter instanceof DateTimeImmutable)
1717
) {
18-
$retryAfter->setTimezone(new DateTimeZone('UTC'));
18+
$retryAfter = $retryAfter->setTimezone(new DateTimeZone('UTC'));
1919
$retryAfter = $retryAfter->format('Y-m-d\TH:i:sP');
2020
}
2121
}

0 commit comments

Comments
 (0)