Skip to content

Commit 892a263

Browse files
bryannielsengithub-actions[bot]
authored andcommitted
Prepare Release 1.1.0
1 parent 5a5d3f0 commit 892a263

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [1.1.0] - 2023-06-14
6+
57
### Added
68

79
- Support for Fluid Field Groups and chainable modifiers introduced in ExpressionEngine 7.3
@@ -157,7 +159,9 @@
157159

158160
- Initial Beta Release
159161

160-
[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.0.1...HEAD
162+
[Unreleased]: https://github.com/ExpressionEngine/Coilpack/compare/1.1.0...HEAD
163+
164+
[1.1.0]: https://github.com/ExpressionEngine/Coilpack/compare/1.0.1...1.1.0
161165

162166
[1.0.1]: https://github.com/ExpressionEngine/Coilpack/compare/1.0.0...1.0.1
163167

src/Fieldtypes/FluidField.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ public function generateGraphType(ChannelField $field)
137137
],
138138
];
139139
}))
140-
->toArray();
140+
->toArray();
141141

142142
$fields['_field_name'] = [
143143
'type' => \GraphQL\Type\Definition\Type::string(),

src/View/Tags/Structure/Nav.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function run()
184184
// Next is deeper start new parent
185185
if ($node['depth'] < @$tree[$i + 1]['depth']) {
186186
$parent = &$node;
187-
// Next is shallower reset parent
187+
// Next is shallower reset parent
188188
} elseif ($node['depth'] > @$tree[$i + 1]['depth']) {
189189
$diff = (array_key_exists($i + 1, $tree)) ? $tree[$i]['depth'] - $tree[$i + 1]['depth'] : $tree[$i]['depth'] - 1;
190190

0 commit comments

Comments
 (0)