Skip to content

Commit

Permalink
Pods 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark committed Mar 25, 2024
1 parent bef9e7c commit 045258a
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Found a bug? Have a great feature idea? Get on GitHub and tell us about it and w

Our GitHub has the full list of all prior releases of Pods: https://github.com/pods-framework/pods/releases

= 3.1.5 - March 25th, 2024 =
= 3.2.0 - March 25th, 2024 =

* Feature: New support for Custom Field revisions in Pods that are Post Types that use Meta storage. You can optionally enable the feature per-pod or per-field. #7265 (@sc0ttkclark)
* Feature: New support for WordPress `register_meta()` for all Pods fields on meta-based Pods. You can enable this feature in Pods Admin > Settings > "Register meta fields". (@sc0ttkclark)
Expand Down
4 changes: 2 additions & 2 deletions classes/PodsForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -1966,7 +1966,7 @@ public static function separator_excluded_field_types() {
/**
* Get the list of revisionable field types.
*
* @since 3.1.5
* @since 3.2.0
*
* @return array The list of revisionable field types.
*/
Expand Down Expand Up @@ -1999,7 +1999,7 @@ public static function revisionable_field_types(): array {
/**
* Allow filtering of the list of field types that can be revisioned.
*
* @since 3.1.5
* @since 3.2.0
*
* @param array $revisionable_field_types The listof field types that can be revisioned.
*/
Expand Down
4 changes: 2 additions & 2 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Pods - Custom Content Types and Fields
* Plugin URI: https://pods.io/
* Description: Pods is a framework for creating, managing, and deploying customized content types and fields
* Version: 3.1.5
* Version: 3.2.0
* Author: Pods Framework Team
* Author URI: https://pods.io/about/
* Text Domain: pods
Expand Down Expand Up @@ -43,7 +43,7 @@
add_action( 'init', 'pods_deactivate_pods_ui' );
} else {
// Current version.
define( 'PODS_VERSION', '3.1.5' );
define( 'PODS_VERSION', '3.2.0' );

// Current database version, this is the last version the database changed.
define( 'PODS_DB_VERSION', '2.3.5' );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pods",
"version": "3.1.5",
"version": "3.2.0",
"description": "Pods is a development framework for creating, extending, managing, and deploying customized content types in WordPress.",
"author": "Pods Foundation, Inc",
"homepage": "https://pods.io/",
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: pods, custom post types, custom taxonomies, content types, custom fields
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.2
Stable tag: 3.1.5
Stable tag: 3.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -182,7 +182,7 @@ Pods really wouldn't be where it is without all the contributions from our [dono

== Changelog ==

= 3.1.5 - March 25th, 2024 =
= 3.2.0 - March 25th, 2024 =

* Feature: New support for Custom Field revisions in Pods that are Post Types that use Meta storage. You can optionally enable the feature per-pod or per-field. #7265 (@sc0ttkclark)
* Feature: New support for WordPress `register_meta()` for all Pods fields on meta-based Pods. You can enable this feature in Pods Admin > Settings > "Register meta fields". (@sc0ttkclark)
Expand Down
12 changes: 6 additions & 6 deletions src/Pods/WP/Bindings.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions src/Pods/WP/Meta.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions src/Pods/WP/Revisions.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions ui/admin/callouts/friends_2023_docs.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

$callout = 'friends_2023_docs';

$donor_count = 2062;
$donor_goal = 6500;
$donor_count = 2768;
$donor_goal = 7000;
$progress_width = ( $donor_count / $donor_goal ) * 100;

$feature_callout_link = '';
Expand Down Expand Up @@ -60,7 +60,7 @@
<p class="pods-admin_friends-callout_text">
🎉&nbsp;
<?php
esc_html_e( 'Pods 3.1 is out and we are spending the next release cycle entirely focused on Documentation, Tutorials, and Video content', 'pods' );
esc_html_e( 'Pods 3.2 is out and our goal is to spend 2024 focused on revamping our Documentation, Tutorials, and Video content', 'pods' );

/*printf(
'%1$s: %2$s',
Expand Down

0 comments on commit 045258a

Please sign in to comment.