Skip to content

Commit cd295df

Browse files
author
Mike van den Hoek
committed
release: v0.4.2
1 parent 80ff425 commit cd295df

File tree

5 files changed

+11
-7
lines changed

5 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [v0.4.2] - 2026-01-06
4+
5+
- Added: use dynamic client options in block attributes and add order attributes
6+
37
## [v0.4.1] - 2025-12-12
48

59
- Change: use DigiD auth class instead of container defintion

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "plugin/owc-mijn-services",
33
"description": "Retrieve information from ZGW to show in Mijn Services",
4-
"version": "1.0.0",
4+
"version": "0.4.2",
55
"type": "wordpress-plugin",
66
"scripts": {
77
"phpcs": "./vendor/squizlabs/php_codesniffer/bin/phpcs",

owc-mijn-services.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* Plugin Name: OWC | Mijn Services
1313
* Plugin URI: https://github.com/OpenWebconcept/plugin-owc-mijn-services
1414
* Description: Toon mijn zaken
15-
* Version: 0.4.1
15+
* Version: 0.4.2
1616
* Author: Yard | Digital Agency
1717
* Author URI: https://www.yard.nl
1818
* License: EUPL
@@ -31,7 +31,7 @@
3131
exit;
3232
}
3333

34-
const VERSION = '0.4.1';
34+
const VERSION = '0.4.2';
3535
define( 'OWC_MY_SERVICES_FILE', __FILE__ );
3636
define( 'OWC_MY_SERVICES_DIR_PATH', plugin_dir_path( OWC_MY_SERVICES_FILE ) );
3737
define( 'OWC_MY_SERVICES_PLUGIN_URL', plugins_url( '/', OWC_MY_SERVICES_FILE ) );

src/Blocks/MijnZaken.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function ($zaak ) use ($attributes ) {
4747
}
4848

4949
/**
50-
* @since NEXT
50+
* @since 0.4.2
5151
*/
5252
protected function handle_filter_ordering(array $attributes ): void
5353
{

src/Providers/BlockServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public function register_blocks(): void
109109
}
110110

111111
/**
112-
* @since NEXT
112+
* @since 0.4.2
113113
*/
114114
private function register_mijn_zaken_block(): void
115115
{
@@ -147,7 +147,7 @@ private function register_mijn_zaken_block(): void
147147
}
148148

149149
/**
150-
* @since NEXT
150+
* @since 0.4.2
151151
*/
152152
private function register_single_zaak_block(): void
153153
{
@@ -173,7 +173,7 @@ private function register_single_zaak_block(): void
173173
}
174174

175175
/**
176-
* @since NEXT
176+
* @since 0.4.2
177177
*/
178178
private function preprare_and_add_client_options(WP_Block_Type $block_type ): void
179179
{

0 commit comments

Comments
 (0)