Skip to content

Commit 0d9491d

Browse files
committed
Make release 3.3.0, update README
1 parent 033737f commit 0d9491d

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

.github/workflows/quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ jobs:
1818
uses: shivammathur/setup-php@v2
1919
with:
2020
php-version: ${{ matrix.php-versions }}
21-
extensions: mbstring, intl #optional, setup extensions
22-
ini-values: post_max_size=256M #optional, setup php.ini configuration
23-
coverage: xdebug #optional, setup coverage driver
2421
tools: phpcbf, phpcs
2522
- name: Check PHP Version
2623
run: php -v
@@ -32,4 +29,7 @@ jobs:
3229
run: composer validate
3330

3431
- name: Check cs
35-
run: composer cs -- ./
32+
run: composer cs -- ./
33+
34+
- name: Check psalm
35+
run: composer psalm

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,18 @@ The autoload is based on psr-4 and handled by composer.
3636

3737
## Changelog ##
3838

39+
### 3.3.0
40+
* 15 March 2021
41+
* Fix all PSALM errors
42+
* Enhance the phpcs:ignore rules to be compatible with skeleton
43+
* Use shortarray syntax
44+
* Enforce return types
45+
* Use InvalidArgumentException when model wrongly instaciated
46+
* Remove thumbnail deletion on remove_post_thumnail
47+
* Rename get_ID to get_id
48+
* Add psalm
49+
* Remove `_*` methods from Models
50+
3951
### 3.2.0
4052
* 1 March 2021
4153
* Introduce interfaces and abstract classes to register Gutenberg blocks

bea-plugin-boilerplate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
Plugin Name: BEA Plugin Name
44
Version: 1.0.0
5-
Version Boilerplate: 3.2.0
5+
Version Boilerplate: 3.3.0
66
Plugin URI: https://beapi.fr
77
Description: Your plugin description
88
Author: Be API Technical team

grumphp.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,8 @@ grumphp:
2121
jsonlint:
2222
ignore_patterns: [ ]
2323
detect_key_conflicts: false
24+
psalm:
25+
config: psalm.xml
26+
triggered_by: ['php']
2427
testsuites: []
2528
extensions: []

0 commit comments

Comments
 (0)