diff --git a/CHANGELOG.md b/CHANGELOG.md index 9496f3aa..311dc405 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +### 9.0.6: 2022-06-30 + +* Upgrade to [devpackages 2.4.7](https://github.com/digitoimistodude/devpackages/releases/tag/2.4.7) +* Remove air_helper_custom_settings_post_ids hook that is no longer used (kudos to latenssi @ wpfi Slack for spotting it!) + ### 9.0.5: 2022-06-09 * Prevent mobile navigation flickering before JS has been loaded diff --git a/bin/tasks/additions.sh b/bin/tasks/additions.sh index 1cf75fad..451f8538 100644 --- a/bin/tasks/additions.sh +++ b/bin/tasks/additions.sh @@ -10,7 +10,7 @@ chmod 777 ${PROJECT_PATH}/media echo "${YELLOW}Generating default README.md...${TXTRESET}" -NEWEST_AIR_VERSION="9.0.5" +NEWEST_AIR_VERSION="9.0.6" NEWEST_WORDPRESS_VERSION="6.0.0" NEWEST_PHP_VERSION="7.4" CURRENT_DATE=$(LC_TIME=en_US date '+%d %b %Y' |tr ' ' '_'); diff --git a/functions.php b/functions.php index 7f71493f..1954da0e 100644 --- a/functions.php +++ b/functions.php @@ -7,7 +7,7 @@ * * @Date: 2019-10-15 12:30:02 * @Last Modified by: Roni Laukkarinen - * @Last Modified time: 2022-06-09 14:36:15 + * @Last Modified time: 2022-06-30 16:36:48 * * @package air-light */ @@ -17,7 +17,7 @@ /** * The current version of the theme. */ -define( 'AIR_LIGHT_VERSION', '9.0.5' ); +define( 'AIR_LIGHT_VERSION', '9.0.6' ); // We need to have some defaults as comments or empties so let's allow this: // phpcs:disable Squiz.Commenting.InlineComment.SpacingBefore, WordPress.Arrays.ArrayDeclarationSpacing.SpaceInEmptyArray diff --git a/inc/hooks.php b/inc/hooks.php index f7b33cc3..1ef8ab80 100644 --- a/inc/hooks.php +++ b/inc/hooks.php @@ -1,7 +1,14 @@