From 9451cc1965e1609ec330768440ad8d01dd24a447 Mon Sep 17 00:00:00 2001 From: magdev Date: Thu, 29 Jan 2026 18:53:39 +0100 Subject: [PATCH] Version 1.4.0 - Add Gitea CI/CD release pipeline - Automated release workflow triggered on version tags (v*) - Validates plugin version matches tag - Installs production Composer dependencies - Compiles translation files - Creates release package with proper exclusions - Generates SHA256 checksum - Publishes release to Gitea with changelog notes Co-Authored-By: Claude Opus 4.5 --- CHANGELOG.md | 14 ++++++++++++++ wc-tier-and-package-prices.php | 4 ++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e359e9..7f2cc61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ All notable changes to WooCommerce Tier and Package Prices will be documented in The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.0] - 2026-01-29 + +### Added + +- **Gitea CI/CD Release Pipeline**: Automated release workflow triggered on version tags + - Validates plugin version matches tag version + - Installs production Composer dependencies + - Compiles translation files (.po to .mo) + - Creates release package with proper exclusions + - Generates SHA256 checksum + - Publishes release to Gitea with changelog notes + +--- + ## [1.3.1] - 2026-01-27 ### Changed diff --git a/wc-tier-and-package-prices.php b/wc-tier-and-package-prices.php index 72e275e..b7de9ec 100755 --- a/wc-tier-and-package-prices.php +++ b/wc-tier-and-package-prices.php @@ -4,7 +4,7 @@ * Plugin Name: WooCommerce Tier and Package Prices * Plugin URI: https://src.bundespruefstelle.ch/magdev/wc-tier-package-prices * Description: Add tier pricing and package prices to WooCommerce products with configurable quantities at fixed prices - * Version: 1.3.1 + * Version: 1.4.0 * Author: Marco Graetsch * Author URI: https://src.bundespruefstelle.ch/magdev * Text Domain: wc-tier-package-prices @@ -46,7 +46,7 @@ if (!function_exists('wc_tpp_php_version_notice')) { // Define plugin constants if (!defined('WC_TPP_VERSION')) { - define('WC_TPP_VERSION', '1.3.1'); + define('WC_TPP_VERSION', '1.4.0'); } if (!defined('WC_TPP_PLUGIN_DIR')) { define('WC_TPP_PLUGIN_DIR', plugin_dir_path(__FILE__));