Skip to content

Commit 9085833

Browse files
authored
Merge branch 'main' into fix/uri-generation
2 parents 330b60e + 55a9034 commit 9085833

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [2.9.2](https://github.com/tempestphp/tempest-framework/compare/v2.9.1..2.9.2) — 2025-11-19
6+
7+
### 🐛 Bug fixes
8+
9+
- **intl**: make pluralizer singleton (#1726) ([39b2b2d](https://github.com/tempestphp/tempest-framework/commit/39b2b2da8683a1d08b5ebabcd71f35486a85e403))
10+
11+
512
## [2.9.0](https://github.com/tempestphp/tempest-framework/compare/v2.8.0..v2.9.0) — 2025-11-14
613

714
### 🚀 Features

packages/core/src/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
interface Kernel
1010
{
11-
public const string VERSION = '2.9.1';
11+
public const string VERSION = '2.9.2';
1212

1313
public string $root {
1414
get;

packages/intl/src/Pluralizer/PluralizerInitializer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66

77
use Tempest\Container\Container;
88
use Tempest\Container\Initializer;
9+
use Tempest\Container\Singleton;
910

1011
final readonly class PluralizerInitializer implements Initializer
1112
{
13+
#[Singleton]
1214
public function initialize(Container $container): Pluralizer
1315
{
1416
return new InflectorPluralizer();

packages/vite-plugin-tempest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vite-plugin-tempest",
33
"type": "module",
4-
"version": "2.9.1",
4+
"version": "2.9.2",
55
"author": "Enzo Innocenzi",
66
"license": "MIT",
77
"sideEffects": false,

0 commit comments

Comments
 (0)