Skip to content

Commit 3c2e51f

Browse files
chore(release): 0.3.0 [skip ci]
## [0.3.0](v0.2.5...v0.3.0) (2022-11-01) ### Features * simplified configuration api ([#40](#40)) ([0ea6edd](0ea6edd)) * update php version for public consts & simplify docs ([#42](#42)) ([18eb759](18eb759)) * update schema to support url field for botd result ([#32](#32)) ([002542b](002542b)) ### Bug Fixes * add force flag to rm command ([#33](#33)) ([b8d8b9d](b8d8b9d)) * api doc fixed for simpler use ([#43](#43)) ([dca0952](dca0952)) * change prepareCmd command ([#36](#36)) ([ece2766](ece2766)) * changed readme instructions & renamed organization name ([334138c](334138c)) * posix error on releaserc ([#38](#38)) ([6a66999](6a66999)) * updated list of ignored generated files ([#37](#37)) ([8fced34](8fced34))
1 parent a2093b3 commit 3c2e51f

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## [0.3.0](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/compare/v0.2.5...v0.3.0) (2022-11-01)
2+
3+
4+
### Features
5+
6+
* simplified configuration api ([#40](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/40)) ([0ea6edd](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/0ea6eddfbce92318f570ce496cd878676f9698b3))
7+
* update php version for public consts & simplify docs ([#42](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/42)) ([18eb759](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/18eb759e1296dd7339cb711c02da077f359a5a0d))
8+
* update schema to support url field for botd result ([#32](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/32)) ([002542b](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/002542b4fd667ea36ab728d1c177be314000cbae))
9+
10+
11+
### Bug Fixes
12+
13+
* add force flag to rm command ([#33](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/33)) ([b8d8b9d](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/b8d8b9dec6c351b869fef0b50c37684ad317b6d5))
14+
* api doc fixed for simpler use ([#43](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/43)) ([dca0952](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/dca0952e5bce0f7138e8de0da17584d6caa329d7))
15+
* change prepareCmd command ([#36](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/36)) ([ece2766](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/ece27666ac1bff0c177858644de231dab2af6d69))
16+
* changed readme instructions & renamed organization name ([334138c](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/334138ccac1f8d71bad86b1825a595ee6f43465a))
17+
* posix error on releaserc ([#38](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/38)) ([6a66999](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/6a669994eb21fc0081643120917a62a79637b6b7))
18+
* updated list of ignored generated files ([#37](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/issues/37)) ([8fced34](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/8fced34b4157c66add3662148fc8b03adafdea6f))
19+
120
## [0.3.0-develop.7](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/compare/v0.3.0-develop.6...v0.3.0-develop.7) (2022-11-01)
221

322

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
3232

3333
- API version: 3
34-
- Package version: dev-0.3.0-7
34+
- Package version: 0.3.0
3535
- Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen
3636

3737
## Requirements

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint/fingerprint-pro-server-api-sdk",
3-
"version": "dev-0.3.0-7",
3+
"version": "0.3.0",
44
"description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.",
55
"keywords": [
66
"swagger",

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"gitUserId": "fingerprintjs",
99
"gitRepoId": "fingerprint-pro-server-api-php-sdk",
1010
"description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.",
11-
"artifactVersion": "dev-0.3.0-7"
11+
"artifactVersion": "0.3.0"
1212
}

src/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Configuration
9090
*
9191
* @var string
9292
*/
93-
protected $userAgent = 'Swagger-Codegen/dev-0.3.0-7/php';
93+
protected $userAgent = 'Swagger-Codegen/0.3.0/php';
9494

9595
/**
9696
* Debug switch (default set to false)
@@ -431,7 +431,7 @@ public static function toDebugReport()
431431
$report .= ' OS: ' . php_uname() . PHP_EOL;
432432
$report .= ' PHP Version: ' . PHP_VERSION . PHP_EOL;
433433
$report .= ' OpenAPI Spec Version: 3' . PHP_EOL;
434-
$report .= ' SDK Package Version: dev-0.3.0-7' . PHP_EOL;
434+
$report .= ' SDK Package Version: 0.3.0' . PHP_EOL;
435435
$report .= ' Temp Folder Path: ' . self::getDefaultConfiguration()->getTempFolderPath() . PHP_EOL;
436436

437437
return $report;

0 commit comments

Comments
 (0)