From 0fe8033bf81b9b02b130ff6f2a02a3dc4edd6ea1 Mon Sep 17 00:00:00 2001 From: xianqiliu Date: Fri, 5 Aug 2022 14:51:27 +0200 Subject: [PATCH] prepare to release version 0.3.0 --- CHANGELOG.md | 14 ++++++++++++++ src/Amadeus.php | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54e38e5..9a94754 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,18 @@ # Changelog +## 0.3.0 - 2022-08-05 + +Add support for the [Travel Recommendations API](https://developers.amadeus.com/self-service/category/trip/api-doc/travel-recommendations/api-reference) + +Add support for the [Airport On-Time Performance API](https://developers.amadeus.com/self-service/category/air/api-doc/airport-on-time-performance/api-reference) + +Fix security vulnerabilities and reduce code smells based on the analysis result from Sonar Cloud. + +Fix and improve documents including README.md, CONTRIBUTING.md, and composer.json. + +Standardize code comments. + +Generate [Amadeus PHP SDK Docs](https://github.com/amadeus4dev/amadeus-php) + ## 0.2.0 - 2022-07-21 Add support for the [Flight Cheapest Dates Search API](https://developers.amadeus.com/self-service/category/air/api-doc/flight-cheapest-date-search/api-reference) diff --git a/src/Amadeus.php b/src/Amadeus.php index 42cfcec..a104e2b 100644 --- a/src/Amadeus.php +++ b/src/Amadeus.php @@ -19,7 +19,7 @@ class Amadeus /** * The SDK version. */ - public const VERSION = "0.2.0"; + public const VERSION = "0.3.0"; private Configuration $configuration;