Skip to content

Commit

Permalink
Version bump to 4.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisnissle committed Jan 23, 2025
1 parent 889d414 commit e5ff79b
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "woocommerce-germanized-shipments",
"title": "Shipments for WooCommerce",
"version": "4.2.0",
"version": "4.2.1",
"homepage": "https://vendidero.de",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class Package {
*
* @var string
*/
const VERSION = '4.2.0';
const VERSION = '4.2.1';

public static $upload_dir_suffix = '';

Expand Down
26 changes: 26 additions & 0 deletions tests/bin/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,32 @@ if [ $# -lt 3 ]; then
exit 1
fi

# Function to check if a command exists
command_exists() {
command -v "$1" >/dev/null 2>&1
}

# Check if SVN is installed
if command_exists svn; then
echo "SVN is already installed."
else
echo "SVN is not installed. Installing SVN..."

# Update the package list
sudo apt-get update -y

# Install SVN
sudo apt-get install -y subversion

# Verify installation
if command_exists svn; then
echo "SVN was successfully installed."
else
echo "Failed to install SVN. Please check your system configuration."
exit 1
fi
fi

DB_NAME=$1
DB_USER=$2
DB_PASS=$3
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-germanized-shipments.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: The Germanized Shipments integration, installed as a feature plugin for development and testing purposes.
* Author: vendidero
* Author URI: https://vendidero.de
* Version: 4.2.0
* Version: 4.2.1
* Requires PHP: 5.6
* License: GPLv3
*
Expand Down

0 comments on commit e5ff79b

Please sign in to comment.