Skip to content

Commit 17692be

Browse files
authored
Merge pull request #514 from MultinetInteractive/master
v4.2.1
2 parents 7210596 + d73485a commit 17692be

7 files changed

Lines changed: 32 additions & 35 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [4.2.1](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.0...v4.2.1) (2024-01-10)
6+
7+
8+
### Bug Fixes
9+
10+
* Add return types ([ae0f126](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/ae0f126f31513731d677c7af2708b10c2a51573e))
11+
512
## [4.2.0](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.1.2...v4.2.0) (2023-12-21)
613

714

PLUGIN-CHECKSUM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3de0d7f8f7f89943ea03086bef2fce18
1+
641355afee3fa37a65a22dc52dda7b98

eduadmin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Plugin URI: https://www.eduadmin.se
1010
* Description: EduAdmin plugin to allow visitors to book courses at your website
1111
* Tags: booking, participants, courses, events, eduadmin, lega online
12-
* Version: 4.2.0
12+
* Version: 4.2.1
1313
* GitHub Plugin URI: multinetinteractive/eduadmin-wordpress
1414
* GitHub Plugin URI: https://github.com/multinetinteractive/eduadmin-wordpress
1515
* Requires at least: 5.8
@@ -23,7 +23,7 @@
2323
*/
2424
/*
2525
EduAdmin Booking plugin
26-
Copyright (C) 2015-2023 Chris Gårdenberg, MultiNet Interactive AB
26+
Copyright (C) 2015-2024 Chris Gårdenberg, MultiNet Interactive AB
2727
2828
This program is free software: you can redistribute it and/or modify
2929
it under the terms of the GNU General Public License as published by

libraries/class-recursive-arrayaccess.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function __clone() {
6161
*
6262
* @return array
6363
*/
64-
public function toArray() {
64+
public function toArray() : array {
6565
$data = $this->container;
6666
foreach ( $data as $key => $value ) {
6767
if ( $value instanceof self ) {
@@ -83,7 +83,7 @@ public function toArray() {
8383
*
8484
* @return boolean true on success or false on failure.
8585
*/
86-
public function offsetExists( $offset ) {
86+
public function offsetExists( $offset ) : bool {
8787
return isset( $this->container[ $offset ] );
8888
}
8989

@@ -96,7 +96,7 @@ public function offsetExists( $offset ) {
9696
*
9797
* @return mixed Can return all value types.
9898
*/
99-
public function offsetGet( $offset ) {
99+
public function offsetGet( $offset ) : mixed {
100100
return isset( $this->container[ $offset ] ) ? $this->container[ $offset ] : null;
101101
}
102102

@@ -110,7 +110,7 @@ public function offsetGet( $offset ) {
110110
*
111111
* @return void
112112
*/
113-
public function offsetSet( $offset, $data ) {
113+
public function offsetSet( $offset, $data ) : void {
114114
if ( is_array( $data ) ) {
115115
$data = new self( $data );
116116
}
@@ -131,7 +131,7 @@ public function offsetSet( $offset, $data ) {
131131
*
132132
* @return void
133133
*/
134-
public function offsetUnset( $offset ) {
134+
public function offsetUnset( $offset ) : void {
135135
unset( $this->container[ $offset ] );
136136
}
137137
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "eduadmin-wordpress-plugin",
33
"private": true,
4-
"version": "4.2.0",
4+
"version": "4.2.1",
55
"repository": "https://github.com/MultinetInteractive/EduAdmin-WordPress.git",
66
"author": "Chris Gårdenberg <chga@multinet.se>",
77
"license": "MIT",

readme.md

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# EduAdmin Booking
22
- Requires at least: 5.8
33
- Tested up to: 6.4
4-
- Stable tag: 4.2.0
4+
- Stable tag: 4.2.1
55
- Requires PHP: 7.0
66
- License: GPL3
77
- License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
@@ -40,6 +40,13 @@ If you notice that your API key doesn't work any more, you have to contact us.
4040

4141
The full changelog available on [GitHub](https://github.com/MultinetInteractive/EduAdmin-WordPress/blob/production/CHANGELOG.md)
4242

43+
### [4.2.1](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.0...v4.2.1) (2024-01-10)
44+
45+
46+
#### Bug Fixes
47+
48+
* Add return types ([ae0f126](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/ae0f126f31513731d677c7af2708b10c2a51573e))
49+
4350
### [4.2.0](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.1.2...v4.2.0) (2023-12-21)
4451

4552

@@ -61,17 +68,5 @@ The full changelog available on [GitHub](https://github.com/MultinetInteractive/
6168

6269
* Don't output the print_r of the entire programme.. ([e32d407](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/e32d4074a10a937fdd8c42f262669d669623a046))
6370

64-
### [4.1.0](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.0.0...v4.1.0) (2023-11-06)
65-
66-
67-
#### Features
68-
69-
* Added shortcode [eduadmin-programmeinfo] with limited attributes ([b51a1b1](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/b51a1b102282dd7a23cd96aa9e459f4b116f3af0)), closes [#506](https://github.com/MultinetInteractive/EduAdmin-WordPress/issues/506)
70-
71-
72-
#### Documentation
73-
74-
* **Shortcodes:** Added info about the new shortcode ([4fe4b80](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/4fe4b8015c095841a75cfd5348ece89bfb90944a)), closes [#506](https://github.com/MultinetInteractive/EduAdmin-WordPress/issues/506)
75-
7671

7772

readme.txt

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: mnchga
33
Tags: booking, participants, courses, events, eduadmin, lega online
44
Requires at least: 5.8
55
Tested up to: 6.4
6-
Stable tag: 4.2.0
6+
Stable tag: 4.2.1
77
Requires PHP: 7.0
88
License: GPL3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
@@ -45,6 +45,13 @@ If you notice that your API key doesn't work any more, you have to contact us.
4545

4646
The full changelog available on [GitHub](https://github.com/MultinetInteractive/EduAdmin-WordPress/blob/production/CHANGELOG.md)
4747

48+
### [4.2.1](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.2.0...v4.2.1) (2024-01-10)
49+
50+
51+
#### Bug Fixes
52+
53+
* Add return types ([ae0f126](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/ae0f126f31513731d677c7af2708b10c2a51573e))
54+
4855
### [4.2.0](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.1.2...v4.2.0) (2023-12-21)
4956

5057

@@ -66,17 +73,5 @@ The full changelog available on [GitHub](https://github.com/MultinetInteractive/
6673

6774
* Don't output the print_r of the entire programme.. ([e32d407](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/e32d4074a10a937fdd8c42f262669d669623a046))
6875

69-
### [4.1.0](https://github.com/MultinetInteractive/EduAdmin-WordPress/compare/v4.0.0...v4.1.0) (2023-11-06)
70-
71-
72-
#### Features
73-
74-
* Added shortcode [eduadmin-programmeinfo] with limited attributes ([b51a1b1](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/b51a1b102282dd7a23cd96aa9e459f4b116f3af0)), closes [#506](https://github.com/MultinetInteractive/EduAdmin-WordPress/issues/506)
75-
76-
77-
#### Documentation
78-
79-
* **Shortcodes:** Added info about the new shortcode ([4fe4b80](https://github.com/MultinetInteractive/EduAdmin-WordPress/commit/4fe4b8015c095841a75cfd5348ece89bfb90944a)), closes [#506](https://github.com/MultinetInteractive/EduAdmin-WordPress/issues/506)
80-
8176

8277

0 commit comments

Comments
 (0)