Skip to content

Commit

Permalink
v0.36.3
Browse files Browse the repository at this point in the history
  • Loading branch information
SonyPradana committed Sep 26, 2024
1 parent 06b2bb0 commit 24c17f8
Show file tree
Hide file tree
Showing 10 changed files with 20 additions and 16 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.36.1] - 2024-09-23
## [0.36.3] - 2024-09-24
### Fixed
- Fixed lifecyle of `TestCase::class`, by adding method `call` to prevent null property (`kernel` or `application`) (#394).

## [0.36.2] - 2024-09-23
### Fixed
- Fixed `TestCase::class` allowed null property, fixed test assign null (kernel) (#393).

Expand Down
2 changes: 1 addition & 1 deletion split-repo.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types=1);

return [
'tag_version' => '^0.36.2',
'tag_version' => '^0.36.3',
'split_repositorys' => [
'sonypradana/cache' => '/src/System/Cache/',
'sonypradana/collection' => '/src/System/Collection/',
Expand Down
2 changes: 1 addition & 1 deletion src/System/Console/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require": {
"php": "^8.0",
"sonypradana/validator": "^0.8",
"sonypradana/text": "^0.36.2"
"sonypradana/text": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/Database/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "^8.0",
"sonypradana/collection": "^0.36.2"
"sonypradana/collection": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/System/Http/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
"require": {
"php": "^8.0",
"sonypradana/validator": "^0.8",
"sonypradana/collection": "^0.36.2",
"sonypradana/macroable": "^0.36.2",
"sonypradana/text": "^0.36.2"
"sonypradana/collection": "^0.36.3",
"sonypradana/macroable": "^0.36.3",
"sonypradana/text": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/System/Router/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
],
"require": {
"php": "^8.0",
"sonypradana/collection": "^0.36.2",
"sonypradana/http": "^0.36.2",
"sonypradana/text": "^0.36.2"
"sonypradana/collection": "^0.36.3",
"sonypradana/http": "^0.36.3",
"sonypradana/text": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/Support/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "^8.0",
"sonypradana/macroable": "^0.36.2"
"sonypradana/macroable": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/Text/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"require": {
"php": "^8.0",
"ext-mbstring": "*",
"sonypradana/macroable": "^0.36.2"
"sonypradana/macroable": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions src/System/Time/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
],
"require": {
"php": "^8.0",
"sonypradana/collection": "^0.36.2",
"sonypradana/support": "^0.36.2",
"sonypradana/text": "^0.36.2"
"sonypradana/collection": "^0.36.3",
"sonypradana/support": "^0.36.3",
"sonypradana/text": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/System/View/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
],
"require": {
"php": "^8.0",
"sonypradana/http": "^0.36.2"
"sonypradana/http": "^0.36.3"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 24c17f8

Please sign in to comment.