Skip to content

Commit

Permalink
Release v1.9.5 Prep
Browse files Browse the repository at this point in the history
  • Loading branch information
XjSv committed Jan 7, 2025
1 parent d5c4a5c commit 9afc183
Show file tree
Hide file tree
Showing 11 changed files with 383 additions and 376 deletions.
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors:
given-names: Justin
- family-names: Tresova
given-names: Armand
version: 1.9.4
version: 1.9.5
doi: 10.5281/zenodo.1171250
date-released: 2017-05-08
url: "https://github.com/XjSv/cooked"
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"recipe"
],
"homepage": "https://wordpress.org/plugins/cooked/",
"version": "1.9.4",
"version": "1.9.5",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"prefer-stable": true,
Expand Down
2 changes: 1 addition & 1 deletion composer.lock

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

4 changes: 2 additions & 2 deletions cooked.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
Description: A recipe plugin for WordPress.
Author: Gora Tech
Author URI: https://goratech.dev
Version: 1.9.4
Version: 1.9.5
Text Domain: cooked
Domain Path: languages
License: GPL2
Expand All @@ -30,7 +30,7 @@

require_once __DIR__ . '/vendor/autoload.php';

define( 'COOKED_VERSION', '1.9.4' );
define( 'COOKED_VERSION', '1.9.5' );
define( 'COOKED_DEV', false );

if ( ! class_exists( 'Cooked_Plugin' ) ) :
Expand Down
1 change: 1 addition & 0 deletions includes/class.cooked-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ private static function needs_rewrite_flush( $old_version ) {
'1.9.1', // Hotfix for the permalink structure.
'1.9.2', // Hotfix for the permalink structure.
'1.9.4', // Hotfix for the permalink structure.
'1.9.5', // Hotfix for the permalink structure (sort & search).
];

// If old version is newer than our latest flush requirement, no flush needed
Expand Down
2 changes: 1 addition & 1 deletion includes/class.cooked-shortcodes.php
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public function cooked_recipe_shortcode( $atts, $content = null ) {
'id' => false,
], $atts);

global $recipe_settings,$_cooked_content_unfiltered;
global $recipe_settings, $_cooked_content_unfiltered;

ob_start();

Expand Down
Loading

0 comments on commit 9afc183

Please sign in to comment.