Skip to content

Commit

Permalink
Release 9.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ronilaukkarinen committed Sep 12, 2023
1 parent a2726bb commit 1f368af
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion bin/tasks/additions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ chmod 777 ${PROJECT_PATH}/media

echo "${YELLOW}Generating default README.md...${TXTRESET}"

NEWEST_AIR_VERSION="9.3.4"
NEWEST_AIR_VERSION="9.3.5"
NEWEST_WORDPRESS_VERSION="6.3.1"
NEWEST_PHP_VERSION="7.4"
CURRENT_DATE=$(LC_TIME=en_US date '+%d %b %Y' |tr ' ' '_');
Expand Down
12 changes: 9 additions & 3 deletions bin/tasks/self-update.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Temp colors
export YELLOW=$(tput setaf 3)
export GREEN=$(tput setaf 2)
export RED=$(tput setaf 1)
export TXTRESET=$(tput sgr0)

# Check for symlink
Expand Down Expand Up @@ -34,9 +35,14 @@ git pull origin master

# If there is something preventing the update, show error message
if [ $? -ne 0 ]; then
echo "${TXTRESET}${WHITE}There was an error updating the start script. You have probably made changes to the air-light theme? Please commit those changes, send a PR or stash them. Please check the error message above and try again."
echo ""
echo "${TXTRESET}${RED}There was an error updating the start script. You have probably made changes to the air-light theme? Please commit those changes, send a PR or stash them. Please check the error message above and try again.${TXTRESET}"
echo ""

# If there are no errors, show success message
# Stop script
exit 1

# If there are no errors, add line break
else
echo "${TXTRESET}${GREEN}The start script newtheme.sh has been updated successfully to the latest version.${TXTRESET}"
echo ""
fi
4 changes: 2 additions & 2 deletions functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* @Date: 2019-10-15 12:30:02
* @Last Modified by: Roni Laukkarinen
* @Last Modified time: 2023-09-07 13:14:34
* @Last Modified time: 2023-09-12 12:20:49
*
* @package air-light
*/
Expand All @@ -17,7 +17,7 @@
/**
* The current version of the theme.
*/
define( 'AIR_LIGHT_VERSION', '9.3.4' );
define( 'AIR_LIGHT_VERSION', '9.3.5' );

// 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
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": "air-light",
"version": "9.3.4",
"version": "9.3.5",
"description": "A minimalist WordPress starter theme.",
"author": "Digitoimisto Dude Oy ([email protected])",
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Tags: one-column, accessibility-ready, translation-ready

Requires at least: 5.0
Tested up to: 6.3.1
Stable tag: 9.3.4
Stable tag: 9.3.5
License: MIT License
License URI: https://opensource.org/licenses/MIT

Expand Down
4 changes: 2 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Theme URI: https://github.com/digitoimistodude/air-light
Author: Digitoimisto Dude Oy
Author URI: https://www.dude.fi
Description: Hi. I'm a starter theme called <code>Air-light</code>, or <em>air</em>, if you like. I'm a theme based on Automattic's underscores and I'm meant for hacking so don't use me as a <em>Parent Theme</em> as-is. Instead try turning me into the next, most awesome, WordPress theme out there. That's what I'm here for.
Version: 9.3.4
Version: 9.3.5
------8<----------
Please do this before your actual theme is ready to go live:
Expand All @@ -20,7 +20,7 @@ If you see this, contact the site admin.
/*---------------------------------------------------------------
>>> Air-light theme version information, only for AIR developers
-----------------------------------------------------------------
@version 2023-09-07
@version 2023-09-12
@since 2016-01-28
Tested up to: 6.3.1
Expand Down

0 comments on commit 1f368af

Please sign in to comment.