Skip to content

Commit

Permalink
v0.36.1
Browse files Browse the repository at this point in the history
  • Loading branch information
SonyPradana committed Sep 23, 2024
1 parent 24778f5 commit 9f01de5
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.36.1] - 2024-09-23
### Fixed
- Fixed deleting gitignore when run `Cache::clear()` using file storage (#391).
- Fixed prevent rendering error in production (#389).

### Changed
- Change or added default configuration for `CACHE_STORAGE` use by `cache` facade and `BCRYPT_ROUNDS` use by `hash` facade (bcrypt hasher) (#392).

## [0.36.0] - 2024-09-18
### Added
- Added `HandleExceptions::class` for handle php error (#368), prevent production report.
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.0',
'tag_version' => '^0.36.1',
'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.0"
"sonypradana/text": "^0.36.1"
},
"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.0"
"sonypradana/collection": "^0.36.1"
},
"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.0",
"sonypradana/macroable": "^0.36.0",
"sonypradana/text": "^0.36.0"
"sonypradana/collection": "^0.36.1",
"sonypradana/macroable": "^0.36.1",
"sonypradana/text": "^0.36.1"
},
"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.0",
"sonypradana/http": "^0.36.0",
"sonypradana/text": "^0.36.0"
"sonypradana/collection": "^0.36.1",
"sonypradana/http": "^0.36.1",
"sonypradana/text": "^0.36.1"
},
"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.0"
"sonypradana/macroable": "^0.36.1"
},
"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.0"
"sonypradana/macroable": "^0.36.1"
},
"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.0",
"sonypradana/support": "^0.36.0",
"sonypradana/text": "^0.36.0"
"sonypradana/collection": "^0.36.1",
"sonypradana/support": "^0.36.1",
"sonypradana/text": "^0.36.1"
},
"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.0"
"sonypradana/http": "^0.36.1"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 9f01de5

Please sign in to comment.