Skip to content

Commit

Permalink
fixing issue with the store registration order
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic committed Apr 21, 2022
1 parent d341c9e commit 8acb467
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file.

This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).

## [5.0.2] - 2022-04-21

### Fixed
- Abstract blocks correct order of store registration.
## [5.0.1] - 2022-04-20

### Fixed
Expand Down Expand Up @@ -314,6 +318,7 @@ Init setup

[Unreleased]: https://github.com/infinum/eightshift-libs/compare/main...HEAD

[5.0.2]: https://github.com/infinum/eightshift-libs/compare/5.0.1...v5.0.2
[5.0.1]: https://github.com/infinum/eightshift-libs/compare/5.0.0...v5.0.1
[5.0.0]: https://github.com/infinum/eightshift-libs/compare/4.1.0...v5.0.0
[4.1.0]: https://github.com/infinum/eightshift-libs/compare/4.0.0...v4.1.0
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@infinum/eightshift-libs",
"version": "5.0.1",
"version": "5.0.2",
"description": "WordPress libs developed by Eightshift team to use in modern WordPress.",
"author": {
"name": "Eightshift team",
Expand Down
3 changes: 1 addition & 2 deletions src/Blocks/AbstractBlocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,11 @@ static function ($block) use ($namespace) {
Components::setSettings($settings);
Components::setBlocks($blocks);
Components::setComponents($this->getComponentsManifests());
Components::setConfigFlags();

if (Components::getConfigUseWrapper()) {
Components::setWrapper($this->getWrapperManifest());
}

Components::setConfigFlags();
}

/**
Expand Down

0 comments on commit 8acb467

Please sign in to comment.