Skip to content

Commit 433c45d

Browse files
committed
v0.36.4
1 parent 805abf6 commit 433c45d

File tree

10 files changed

+19
-15
lines changed

10 files changed

+19
-15
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.36.4] - 2024-10-08
10+
### Fixed
11+
- Fixed allowed `CacheManager::setDriver()` using closure (lazy load), register driver without initial driver (#395).
12+
913
## [0.36.3] - 2024-09-24
1014
### Fixed
1115
- Fixed lifecyle of `TestCase::class`, by adding method `call` to prevent null property (`kernel` or `application`) (#394).

split-repo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
declare(strict_types=1);
44

55
return [
6-
'tag_version' => '^0.36.3',
6+
'tag_version' => '^0.36.4',
77
'split_repositorys' => [
88
'sonypradana/cache' => '/src/System/Cache/',
99
'sonypradana/collection' => '/src/System/Collection/',

src/System/Console/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": "^8.0",
1212
"sonypradana/validator": "^0.8",
13-
"sonypradana/text": "^0.36.3"
13+
"sonypradana/text": "^0.36.4"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/System/Database/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.36.3"
12+
"sonypradana/collection": "^0.36.4"
1313
},
1414
"autoload": {
1515
"psr-4": {

src/System/Http/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"require": {
1111
"php": "^8.0",
1212
"sonypradana/validator": "^0.8",
13-
"sonypradana/collection": "^0.36.3",
14-
"sonypradana/macroable": "^0.36.3",
15-
"sonypradana/text": "^0.36.3"
13+
"sonypradana/collection": "^0.36.4",
14+
"sonypradana/macroable": "^0.36.4",
15+
"sonypradana/text": "^0.36.4"
1616
},
1717
"autoload": {
1818
"psr-4": {

src/System/Router/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.36.3",
13-
"sonypradana/http": "^0.36.3",
14-
"sonypradana/text": "^0.36.3"
12+
"sonypradana/collection": "^0.36.4",
13+
"sonypradana/http": "^0.36.4",
14+
"sonypradana/text": "^0.36.4"
1515
},
1616
"autoload": {
1717
"psr-4": {

src/System/Support/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/macroable": "^0.36.3"
12+
"sonypradana/macroable": "^0.36.4"
1313
},
1414
"autoload": {
1515
"psr-4": {

src/System/Text/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"require": {
1111
"php": "^8.0",
1212
"ext-mbstring": "*",
13-
"sonypradana/macroable": "^0.36.3"
13+
"sonypradana/macroable": "^0.36.4"
1414
},
1515
"autoload": {
1616
"psr-4": {

src/System/Time/composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/collection": "^0.36.3",
13-
"sonypradana/support": "^0.36.3",
14-
"sonypradana/text": "^0.36.3"
12+
"sonypradana/collection": "^0.36.4",
13+
"sonypradana/support": "^0.36.4",
14+
"sonypradana/text": "^0.36.4"
1515
},
1616
"autoload": {
1717
"psr-4": {

src/System/View/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
],
1010
"require": {
1111
"php": "^8.0",
12-
"sonypradana/http": "^0.36.3"
12+
"sonypradana/http": "^0.36.4"
1313
},
1414
"autoload": {
1515
"psr-4": {

0 commit comments

Comments
 (0)