Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 6.0.5 #267

Merged
merged 1 commit into from
Jan 19, 2024
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -365,5 +365,5 @@ engineering@conekta.com
This PHP package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: `2.1.0`
- Package version: `6.0.4`
- Package version: `6.0.5`
- Build package: `org.openapitools.codegen.languages.PhpClientCodegen`
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6.0.4
6.0.5
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "conekta/conekta-php",
"version": "6.0.4",
"version": "6.0.5",
"description": "Conekta PHP Library",
"type": "library",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions config-php.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"packageName": "conekta",
"generateSourceCodeOnly": "false",
"artifactVersion": "6.0.4",
"artifactVersion": "6.0.5",
"packageUrl": "https://developers.conekta.com/",
"projectName": "conekta-php",
"appDescriptionV2" : "Conekta PHP Library",
"useOneOfDiscriminatorLookup" : true,
"nonCompliantUseDiscriminatorIfCompositionFails" : false,
"httpUserAgent": "Conekta/v2 PhpBindings/6.0.4",
"httpUserAgent": "Conekta/v2 PhpBindings/6.0.5",
"packageAuthors" : "engineering@conekta.com",
"files": {
"/local/CODE_OF_CONDUCT.md" : {},
Expand Down
4 changes: 2 additions & 2 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ class Configuration
*
* @var string
*/
protected $userAgent = 'Conekta/v2 PhpBindings/6.0.4';
protected $userAgent = 'Conekta/v2 PhpBindings/6.0.5';

/**
* Debug switch (default set to false)
Expand Down Expand Up @@ -456,7 +456,7 @@ public static function toDebugReport()
$report .= ' OS: ' . $uname . PHP_EOL;
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
$report .= ' The version of the OpenAPI document: 2.1.0' . PHP_EOL;
$report .= ' SDK Package Version: 6.0.4' . PHP_EOL;
$report .= ' SDK Package Version: 6.0.5' . PHP_EOL;
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;

return $report;
Expand Down
2 changes: 1 addition & 1 deletion lib/HeaderSelector.php
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public function getConektaUserAgent(): array
$uname = $uname_disabled ? '(disabled)' : \php_uname();

$userAgent = [
'bindings_version' => "6.0.4",
'bindings_version' => "6.0.5",
'lang' => 'php',
'lang_version' => phpversion(),
'publisher' => 'conekta',
Expand Down