Skip to content

Commit

Permalink
1.6.1 - fix double-backslash
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Aug 11, 2023
1 parent ec56e90 commit 8f3ac6c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Release Notes for Craft Generator

## 1.6.1 - 2023-08-10
- Fixed a double-backslash bug.

## 1.6.0 - 2023-08-10
- Added `craft\generator\BaseGenerator::messageTwig()`. ([#25](https://github.com/craftcms/generator/pull/25))
- The plugin generator now ensures that the project’s `composer.json` file has `minimum-stability: dev` and `prefer-stable: true` set. ([#22](https://github.com/craftcms/generator/issues/22))
Expand Down
2 changes: 1 addition & 1 deletion src/generators/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public static function config(): array
```
'modules' => [
'{$this->module->id}' => [
'class' => \\$moduleClass::class,
'class' => $moduleClass::class,
'components' => [
'$this->componentId' => $serviceClass::class,
],
Expand Down

0 comments on commit 8f3ac6c

Please sign in to comment.