Skip to content

Commit 9f01de5

Browse files
committed
v0.36.1
1 parent 24778f5 commit 9f01de5

File tree

10 files changed

+23
-15
lines changed

10 files changed

+23
-15
lines changed

CHANGELOG.md

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

77
## [Unreleased]
88

9+
## [0.36.1] - 2024-09-23
10+
### Fixed
11+
- Fixed deleting gitignore when run `Cache::clear()` using file storage (#391).
12+
- Fixed prevent rendering error in production (#389).
13+
14+
### Changed
15+
- Change or added default configuration for `CACHE_STORAGE` use by `cache` facade and `BCRYPT_ROUNDS` use by `hash` facade (bcrypt hasher) (#392).
16+
917
## [0.36.0] - 2024-09-18
1018
### Added
1119
- Added `HandleExceptions::class` for handle php error (#368), prevent production report.

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.0',
6+
'tag_version' => '^0.36.1',
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.0"
13+
"sonypradana/text": "^0.36.1"
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.0"
12+
"sonypradana/collection": "^0.36.1"
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.0",
14-
"sonypradana/macroable": "^0.36.0",
15-
"sonypradana/text": "^0.36.0"
13+
"sonypradana/collection": "^0.36.1",
14+
"sonypradana/macroable": "^0.36.1",
15+
"sonypradana/text": "^0.36.1"
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.0",
13-
"sonypradana/http": "^0.36.0",
14-
"sonypradana/text": "^0.36.0"
12+
"sonypradana/collection": "^0.36.1",
13+
"sonypradana/http": "^0.36.1",
14+
"sonypradana/text": "^0.36.1"
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.0"
12+
"sonypradana/macroable": "^0.36.1"
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.0"
13+
"sonypradana/macroable": "^0.36.1"
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.0",
13-
"sonypradana/support": "^0.36.0",
14-
"sonypradana/text": "^0.36.0"
12+
"sonypradana/collection": "^0.36.1",
13+
"sonypradana/support": "^0.36.1",
14+
"sonypradana/text": "^0.36.1"
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.0"
12+
"sonypradana/http": "^0.36.1"
1313
},
1414
"autoload": {
1515
"psr-4": {

0 commit comments

Comments
 (0)