Skip to content

Commit

Permalink
chore(release): 4.0.2 [skip ci]
Browse files Browse the repository at this point in the history
## [4.0.2](v4.0.1...v4.0.2) (2023-01-19)

### Bug Fixes

* **admin:** Fix admin URL by replacing directory separator with forward slash ([9aa3a8f](9aa3a8f))
  • Loading branch information
semantic-release-bot committed Jan 19, 2023
1 parent 9aa3a8f commit 4e23baf
Show file tree
Hide file tree
Showing 16 changed files with 73 additions and 66 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [4.0.2](https://github.com/charcoalphp/charcoal/compare/v4.0.1...v4.0.2) (2023-01-19)


### Bug Fixes

* **admin:** Fix admin URL by replacing directory separator with forward slash ([9aa3a8f](https://github.com/charcoalphp/charcoal/commit/9aa3a8f5c089604951a74e48030dc815b53baad9))

## [4.0.1](https://github.com/charcoalphp/charcoal/compare/v4.0.0...v4.0.1) (2022-11-10)


Expand Down
18 changes: 9 additions & 9 deletions packages/admin/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@
"guzzlehttp/guzzle": "^6.0 || ^7.0",
"kriswallsmith/assetic": "^1.4",
"laminas/laminas-permissions-acl": "^2.8",
"charcoal/app": "^4.0.1",
"charcoal/cache": "^4.0.1",
"charcoal/cms": "^4.0.1",
"charcoal/core": "^4.0.1",
"charcoal/email": "^4.0.1",
"charcoal/object": "^4.0.1",
"charcoal/translator": "^4.0.1",
"charcoal/ui": "^4.0.1",
"charcoal/user": "^4.0.1",
"charcoal/app": "^4.0.2",
"charcoal/cache": "^4.0.2",
"charcoal/cms": "^4.0.2",
"charcoal/core": "^4.0.2",
"charcoal/email": "^4.0.2",
"charcoal/object": "^4.0.2",
"charcoal/translator": "^4.0.2",
"charcoal/ui": "^4.0.2",
"charcoal/user": "^4.0.2",
"mcaskill/php-html-build-attributes": "^1.0",
"psr/cache": "^1.0",
"psr/http-message": "^1.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/app/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@
"ext-pdo": "*",
"league/climate": "^3.2",
"league/flysystem": "^1.0",
"charcoal/cache": "^4.0.1",
"charcoal/config": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/translator": "^4.0.1",
"charcoal/view": "^4.0.1",
"charcoal/cache": "^4.0.2",
"charcoal/config": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/translator": "^4.0.2",
"charcoal/view": "^4.0.2",
"monolog/monolog": "^1.17",
"psr/http-message": "^1.0",
"psr/log": "^1.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/attachment/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
},
"require": {
"php": "^7.4 || ^8.0",
"charcoal/config": "^4.0.1",
"charcoal/core": "^4.0.1",
"charcoal/object": "^4.0.1",
"charcoal/translator": "^4.0.1"
"charcoal/config": "^4.0.2",
"charcoal/core": "^4.0.2",
"charcoal/object": "^4.0.2",
"charcoal/translator": "^4.0.2"
},
"require-dev": {
"charcoal/admin": "^4.0.1",
"charcoal/admin": "^4.0.2",
"mockery/mockery": "^1.0",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^9.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/cache/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"require": {
"php": "^7.4 || ^8.0",
"charcoal/config": "^4.0.1",
"charcoal/config": "^4.0.2",
"pimple/pimple": "^3.0",
"psr/cache": "^1.0",
"tedivm/stash": "~0.16"
Expand Down
16 changes: 8 additions & 8 deletions packages/cms/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,16 @@
"require": {
"php": "^7.4 || ^8.0",
"psr/http-message": "^1.0",
"charcoal/app": "^4.0.1",
"charcoal/attachment": "^4.0.1",
"charcoal/core": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/object": "^4.0.1",
"charcoal/property": "^4.0.1",
"charcoal/translator": "^4.0.1"
"charcoal/app": "^4.0.2",
"charcoal/attachment": "^4.0.2",
"charcoal/core": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/object": "^4.0.2",
"charcoal/property": "^4.0.2",
"charcoal/translator": "^4.0.2"
},
"require-dev": {
"charcoal/admin": "^4.0.1",
"charcoal/admin": "^4.0.2",
"mustache/mustache": "^2.11",
"php-coveralls/php-coveralls": "^2.2",
"phpunit/phpunit": "^9.5",
Expand Down
12 changes: 6 additions & 6 deletions packages/core/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"psr/log": "^1.0",
"psr/cache": "^1.0",
"pimple/pimple": "^3.0",
"charcoal/cache": "^4.0.1",
"charcoal/config": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/property": "^4.0.1",
"charcoal/view": "^4.0.1"
"charcoal/cache": "^4.0.2",
"charcoal/config": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/property": "^4.0.2",
"charcoal/view": "^4.0.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand All @@ -40,7 +40,7 @@
"cache/void-adapter": "^1.0",
"tedivm/stash": "~0.16",
"mockery/mockery": "^1.0",
"charcoal/app": "^4.0.1"
"charcoal/app": "^4.0.2"
},
"autoload": {
"psr-4": {
Expand Down
6 changes: 3 additions & 3 deletions packages/email/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"php": "^7.4 || ^8.0",
"psr/log": "^1.0",
"phpmailer/phpmailer": "~6.0",
"charcoal/config": "^4.0.1",
"charcoal/app": "^4.0.1",
"charcoal/queue": "^4.0.1",
"charcoal/config": "^4.0.2",
"charcoal/app": "^4.0.2",
"charcoal/queue": "^4.0.2",
"seld/jsonlint": "^1.9",
"ext-pdo": "*"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/image/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
},
"require": {
"php": "^7.4 || ^8.0",
"charcoal/factory": "^4.0.1"
"charcoal/factory": "^4.0.2"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/object/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
"require": {
"php": "^7.4 || ^8.0",
"psr/log": "^1.0",
"charcoal/config": "^4.0.1",
"charcoal/core": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/translator": "^4.0.1"
"charcoal/config": "^4.0.2",
"charcoal/core": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/translator": "^4.0.2"
},
"require-dev": {
"php-coveralls/php-coveralls": "^2.2",
Expand Down
10 changes: 5 additions & 5 deletions packages/property/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@
"ext-simplexml": "*",
"psr/log": "^1.0",
"psr/cache": "^1.0",
"charcoal/config": "^4.0.1",
"charcoal/core": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/image": "^4.0.1",
"charcoal/translator": "^4.0.1"
"charcoal/config": "^4.0.2",
"charcoal/core": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/image": "^4.0.2",
"charcoal/translator": "^4.0.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/queue/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
"require": {
"php": "^7.4 || ^8.0",
"psr/log": "^1.0",
"charcoal/core": "^4.0.1",
"charcoal/factory": "^4.0.1"
"charcoal/core": "^4.0.2",
"charcoal/factory": "^4.0.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/translator/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
},
"require": {
"php": "^7.4 || ^8.0",
"charcoal/config": "^4.0.1",
"charcoal/config": "^4.0.2",
"symfony/translation": "^3.4",
"pimple/pimple": "^3.0"
},
Expand All @@ -31,8 +31,8 @@
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.5",
"php-coveralls/php-coveralls": "^2.2",
"charcoal/admin": "^4.0.1",
"charcoal/app": "^4.0.1"
"charcoal/admin": "^4.0.2",
"charcoal/app": "^4.0.2"
},
"suggest": {
"charcoal/app": "To run the parser script."
Expand Down
12 changes: 6 additions & 6 deletions packages/ui/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@
"require": {
"php": "^7.4 || ^8.0",
"psr/log": "^1.0",
"charcoal/config": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/translator": "^4.0.1",
"charcoal/view": "^4.0.1",
"charcoal/user": "^4.0.1"
"charcoal/config": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/translator": "^4.0.2",
"charcoal/view": "^4.0.2",
"charcoal/user": "^4.0.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand All @@ -36,7 +36,7 @@
"mustache/mustache": "^2.11",
"tedivm/stash": "~0.16",
"pimple/pimple": "^3.0",
"charcoal/app": "^4.0.1"
"charcoal/app": "^4.0.2"
},
"suggest": {
"pimple/pimple": "DI Container to register the various Service Providers."
Expand Down
10 changes: 5 additions & 5 deletions packages/user/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"php": "^7.4 || ^8.0",
"psr/log": "^1.0",
"laminas/laminas-permissions-acl": "^2.8",
"charcoal/object": "^4.0.1",
"charcoal/config": "^4.0.1",
"charcoal/factory": "^4.0.1",
"charcoal/core": "^4.0.1",
"charcoal/translator": "^4.0.1"
"charcoal/object": "^4.0.2",
"charcoal/config": "^4.0.2",
"charcoal/factory": "^4.0.2",
"charcoal/core": "^4.0.2",
"charcoal/translator": "^4.0.2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
Expand Down
6 changes: 3 additions & 3 deletions packages/view/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"php": "^7.4 || ^8.0",
"ext-json": "*",
"psr/http-message": "^1.0",
"charcoal/config": "^4.0.1",
"charcoal/config": "^4.0.2",
"erusev/parsedown": "^1.7"
},
"require-dev": {
Expand All @@ -31,9 +31,9 @@
"twig/twig": "^3.4",
"pimple/pimple": "^3.0",
"slim/slim": "^3.7",
"charcoal/translator": "^4.0.1",
"charcoal/translator": "^4.0.2",
"phpstan/phpstan": "^1.6",
"charcoal/app": "^4.0.1"
"charcoal/app": "^4.0.2"
},
"suggest": {
"mustache/mustache": "Mustache is suggested as the default templating engine.",
Expand Down

0 comments on commit 4e23baf

Please sign in to comment.