Skip to content

Commit

Permalink
Merge pull request #95 from onpayio/task/new_version
Browse files Browse the repository at this point in the history
Tagging new release 1.0.35
  • Loading branch information
ebbesmoeller authored Sep 6, 2023
2 parents 353b84d + 4060687 commit 2e6957c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ 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).

## [Unreleased]

## [1.0.35] - 2023-09-06
- Added ability to set language of created payments according to frontoffice language
- Performance optimization of payment creation.
- Bugfix of subscriptions not being available in block layout.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ The plugin adds the following functionality to WooCommerce:
- Management of transaction on order pages in backoffice.

The plugin is tested and confirmed working on
- Wordpress 6.3
- WooCommerce 8.0.2
- Wordpress 6.3.1
- WooCommerce 8.0.3

## Usage
1. Install plugin as any other Wordpress plugin.
Expand Down
7 changes: 6 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: onpayio
Tags: onpay, gateway, payment, payment gateway, woocommerce, psp
Requires at least: 5.8
Tested up to: 6.3.0
Tested up to: 6.3.1
Requires PHP: 7.2
Stable tag: 1.0.34
License: MIT
Expand Down Expand Up @@ -34,6 +34,11 @@ Don't have an OnPay account yet? Order one through <a href="https://dandomain.d

== Changelog ==

= [1.0.35] =
Added ability to set language of created payments according to frontoffice language
Performance optimization of payment creation.
Bugfix of subscriptions not being available in block layout.

= [1.0.34] =
Restructured the settings page into sevaral sections
Implemented block layout for payment methods
Expand Down
4 changes: 2 additions & 2 deletions woocommerce-onpay.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
* Author URI: https://onpay.io/
* Text Domain: wc-onpay
* Domain Path: /languages
* Version: 1.0.34
* Version: 1.0.35
**/

if ( ! defined( 'ABSPATH' ) ) {
Expand Down Expand Up @@ -63,7 +63,7 @@ function init_onpay() {
include_once __DIR__ . '/classes/gateway-paypal.php';

class WC_OnPay extends WC_Payment_Gateway {
const PLUGIN_VERSION = '1.0.34';
const PLUGIN_VERSION = '1.0.35';

const SETTING_ONPAY_GATEWAY_ID = 'gateway_id';
const SETTING_ONPAY_SECRET = 'secret';
Expand Down

0 comments on commit 2e6957c

Please sign in to comment.