Skip to content
This repository has been archived by the owner on Nov 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #540 from getblocklab/bump/1.5.5
Browse files Browse the repository at this point in the history
Bump the version of BL to 1.5.5
  • Loading branch information
lukecarbis committed Apr 23, 2020
2 parents e117329 + db1e1d1 commit 9da3ef8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
## Changelog #

### 1.5.5 – 2020-04-23 ###

Removed upgrade screen, dependency updates

* Tweak: By default, the upgrade screen is hidden
* Tweak: Minor package.json dependency updates for security and reliability

### 1.5.4 – 2020-03-26 ###

Improved stability, small bugfixes.
Expand Down
2 changes: 1 addition & 1 deletion block-lab.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
* Plugin Name: Block Lab
* Plugin URI: https://getblocklab.com
* Description: The easy way to build custom blocks for Gutenberg.
* Version: 1.5.4
* Version: 1.5.5
* Author: Block Lab
* Author URI: https://getblocklab.com
* License: GPL2
Expand Down
4 changes: 2 additions & 2 deletions js/blocks/components/test/fetch-input.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,12 +67,12 @@ describe( 'FetchInput', () => {
[ [ 'a-result' ], false ],
[ [ 'first-result', 'another-result' ], false ],
] )( 'should only have the error class if there are no results after focusing',
( apiResults, expected ) => {
async ( apiResults, expected ) => {
apiFetch.mockImplementationOnce( () => new Promise( ( resolve ) => resolve( apiResults ) ) );
const { input } = setup( baseProps );
fireEvent.focus( input );

waitForDomChange( { container: input } ).then( () => {
await waitForDomChange( { container: input } ).then( () => {
expect( input.classList.contains( 'text-control__error' ) ).toStrictEqual( expected );
} );
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "block-lab",
"title": "Block Lab",
"version": "1.5.4",
"version": "1.5.5",
"description": "WordPress plugin with a simple templating system for building custom blocks.",
"author": "Block Lab",
"license": "GPL-2.0-or-later",
Expand Down

0 comments on commit 9da3ef8

Please sign in to comment.