Skip to content

Commit

Permalink
update release
Browse files Browse the repository at this point in the history
  • Loading branch information
iruzevic committed Oct 23, 2024
1 parent d831643 commit 6c7548f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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.1.5]

### Fixed

- Wrong function type hint for `getCptLimits` function.

## [5.1.4]

### Fixed
Expand Down Expand Up @@ -704,6 +710,7 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a

- Initial production release.

[5.1.5]: https://github.com/infinum/eightshift-forms/compare/5.1.4...5.1.5
[5.1.4]: https://github.com/infinum/eightshift-forms/compare/5.1.3...5.1.4
[5.1.3]: https://github.com/infinum/eightshift-forms/compare/5.1.2...5.1.3
[5.1.2]: https://github.com/infinum/eightshift-forms/compare/5.1.1...5.1.2
Expand Down
2 changes: 1 addition & 1 deletion eightshift-forms.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Description: Eightshift Forms is a complete form builder plugin that utilizes modern Block editor features with multiple third-party integrations, bringing your project to a new level.
* Author: WordPress team @Infinum
* Author URI: https://eightshift.com/
* Version: 5.1.4
* Version: 5.1.5
* Text Domain: eightshift-forms
*
* @package EightshiftForms
Expand Down
4 changes: 2 additions & 2 deletions src/Rest/Routes/CptRoutes.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ public function register(): void
* @param WP_REST_Server $server The server object.
* @param WP_REST_Request $request The request object.
*
* @return array<string, mixed>
* @return mixed
*/
public function getCptLimits($results, WP_REST_Server $server, WP_REST_Request $request): array
public function getCptLimits($results, WP_REST_Server $server, WP_REST_Request $request)
{
$disableRoutes = [
'/wp/v2/' . UtilsConfig::SLUG_POST_TYPE,
Expand Down

0 comments on commit 6c7548f

Please sign in to comment.