Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2.4.2
* Minor fixes

## 2.4.1
* Fixing #141 - missing DateTime in allowed_classes when unserializing

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"type": "library",
"license": "apache-2.0",
"description": "OpenPayU PHP Library",
"version": "2.4.1",
"version": "2.4.2",
"extra": [
{
"engine": "PHP SDK"
Expand Down
2 changes: 1 addition & 1 deletion lib/OpenPayU/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class OpenPayU_Configuration

const API_VERSION = '2.1';
const COMPOSER_JSON = "/composer.json";
const DEFAULT_SDK_VERSION = 'PHP SDK 2.4.1';
const DEFAULT_SDK_VERSION = 'PHP SDK 2.4.2';
const OAUTH_CONTEXT = 'pl/standard/user/oauth/authorize';

/**
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/OpenPayU_ConfigurationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
class OpenPayU_ConfigurationTest extends TestCase
{

const PHP_SDK_VERSION = 'PHP SDK 2.4.1';
const PHP_SDK_VERSION = 'PHP SDK 2.4.2';
const API_VERSION = '2.1';
const POS_ID = 'PosId';
const SIGNATURE_KEY = 'SignatureKey';
Expand Down
Loading