diff --git a/VERSION b/VERSION index 2c546840..604a75f6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.56 \ No newline at end of file +2.0.57 \ No newline at end of file diff --git a/src/Iyzipay/IyzipayResource.php b/src/Iyzipay/IyzipayResource.php index e6e15324..237767a0 100644 --- a/src/Iyzipay/IyzipayResource.php +++ b/src/Iyzipay/IyzipayResource.php @@ -22,7 +22,7 @@ protected static function getHttpHeaders(Request $request, Options $options) $rnd = uniqid(); array_push($header, "Authorization: " . self::prepareAuthorizationString($request, $options, $rnd)); array_push($header, "x-iyzi-rnd: " . $rnd); - array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.56"); + array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.57"); return $header; } @@ -38,7 +38,7 @@ protected static function getHttpHeadersV2($uri, Request $request = null, Option array_push($header, "Authorization: " . self::prepareAuthorizationStringV2($uri, $request, $options, $rnd)); $addRandom && array_push($header, "x-iyzi-rnd: " . $rnd); array_push($header, "AUTHORIZATION_FALLBACK_HEADER: " . self::prepareAuthorizationString($request, $options, $rnd)); - array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.56"); + array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.57"); return $header; } @@ -53,7 +53,7 @@ protected static function getHttpHeadersIsV2($uri, Request $request = null, Opti $rnd = uniqid(); array_push($header, "Authorization: " . self::prepareAuthorizationStringV2($uri, $request, $options, $rnd)); $addRandom && array_push($header, "x-iyzi-rnd: " . $rnd); - array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.56"); + array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.57"); return $header; }