Skip to content

Commit

Permalink
Release 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
sauliususoniswallee committed Nov 9, 2022
1 parent b0533d4 commit 4405f9a
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ before_deploy:
git clone -b master https://github.com/WordPress/WordPress-Coding-Standards.git wpcs;
cd phpcs;
./bin/phpcs --config-set installed_paths ../wpcs;
cd ../;
cd ..;
mkdir build;
mkdir build/src;
rsync -r --exclude 'build' --exclude 'wpcs' --exclude 'phpcs' --exclude '.git' --exclude '.travis.yml' --exclude 'README.md' . build/src;
rsync -r --exclude 'build' --exclude '.git' --exclude 'phpcs' --exclude 'wpcs' --exclude '.travis.yml' --exclude 'README.md' . build/src;
perl -plne 'print "$ENV{'FEATURES'}" if(/== Installation ==/); print "$ENV{'FAQ_ENTRIES'}" if(/== Changelog ==/);' build/src/readme.txt > build/src/readme_mod.txt;
rm build/src/readme.txt;
mv build/src/readme_mod.txt build/src/readme.txt;
mkdir build/$WORDPRESS_ORG_SLUG;
rsync -r build/src/ build/$WORDPRESS_ORG_SLUG/;
rm -rf build/src/docs
cd build;
zip -r $TRAVIS_BUILD_DIR/$WORDPRESS_ORG_SLUG.zip $WORDPRESS_ORG_SLUG;
rm -rf src/docs;
../phpcs/bin/phpcbf -n --standard=WordPress src/ || true;
../phpcs/bin/phpcs -n --standard=WordPress src/ || true;
cd ..;
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ This repository contains the wallee Subscriptions addon that enables WooCommerce

## License

Please see the [license file](https://github.com/wallee-payment/woocommerce-subscription/blob/1.1.1/LICENSE) for more information.
Please see the [license file](https://github.com/wallee-payment/woocommerce-subscription/blob/1.1.2/LICENSE) for more information.

8 changes: 8 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,11 @@ Bug fix, if space_view_id is not set, it does not send it to the service portal.
- Wordpress: 6.1
- Woocommerce: 6.7.0

## Bugfixes:
- Travis file fix, no changes made to the plugin codebase

## Tested against:
- PHP 7.4.32
- Wordpress: 6.1
- Woocommerce: 6.7.0

2 changes: 1 addition & 1 deletion docs/en/documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ <h2>Documentation</h2> </div>
</a>
</li>
<li>
<a href="https://github.com/wallee-payment/woocommerce-subscription/releases/tag/1.1.1/">
<a href="https://github.com/wallee-payment/woocommerce-subscription/releases/tag/1.1.2/">
Source
</a>
</li>
Expand Down
12 changes: 2 additions & 10 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: customwebgmbh
Tags: woocommerce wallee, woocommerce, wallee, payment, e-commerce, webshop, psp, subscription, recurring payment, processing
Requires at least: 4.7
Tested up to: 6.0.1
Stable tag: 1.1.1
Stable tag: 1.1.2
License: Apache 2
License URI: http://www.apache.org/licenses/LICENSE-2.0

Expand Down Expand Up @@ -49,16 +49,8 @@ Therefore, it is necessary that you install the this plugin as well.

== Changelog ==

## Features:
- Support of Wordpress 6.1
- Support of Woocommerce 7.0.1

## Bugfixes:
- Tested up to latest WP and WC versions.
- Security fixes for sanitation, escaping and validation.
- PHPCS and trademark fixes.
- Removed unnecessary documentation files, as they are available online.
- Removed calls to remote files for deprecated features.
- Travis file fix, no changes made to the plugin codebase

## Tested against:
- PHP 7.4.32
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-wallee-subscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: wallee Subscription
* Plugin URI: https://wordpress.org/plugins/woo-wallee-subscription
* Description: Addon to process WooCommerce Subscriptions with wallee
* Version: 1.1.1
* Version: 1.1.2
* License: Apache2
* License URI: http://www.apache.org/licenses/LICENSE-2.0
* Author: wallee AG
Expand Down Expand Up @@ -36,7 +36,7 @@ final class WooCommerce_Wallee_Subscription {
*
* @var string
*/
private $version = '1.1.1';
private $version = '1.1.2';

/**
* The single instance of the class.
Expand Down

0 comments on commit 4405f9a

Please sign in to comment.