From dc55f04dcf49cad94358782422b2a6000718b76f Mon Sep 17 00:00:00 2001 From: Anthony Roux Date: Wed, 4 Dec 2019 12:19:18 +0100 Subject: [PATCH] Prepare release v3.3.0 --- CHANGELOG.rst | 14 ++++++++++++++ amadeus/version.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 46f78e28..d93d66a6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,19 @@ Changelog ========= +3.3.0 - 2019-12-04 +-------------------- +Add support for the `AI-Generated Photos `_ + +The AI-Generated Photos API returns a link to download a rendered image of a landscape. The image size is 512x512 pixels and the currently available image categories are BEACH and MOUNTAIN. The link to download the AI-generated picture is valid for 24 hours. This API is an experimental project created by the Amadeus AI Lab using the Nvidia StyleGAN framework. This API is free to use and we welcome any feedback you may have about improvements. + +Add support for the `Flight Delay Prediction `_ + +The Flight Delay Prediction API returns the probability that a given flight will be delayed by four possible delay lengths: less than 30 minutes, 30-60 minutes, 60-120 minutes and over 120 minutes/cancellation. The API receives flight information and applies a machine-learning model trained with Amadeus historical data to determine the probability of flight delay. + +Release of the `Airport On-Time Performance `_ + +The Airport On-Time Performance API returns the estimated percentage of on-time flight departures for a given airport and date. The API receives the 3-letter IATA airport code and departure date and applies a machine-learning model trained with Amadeus historical data to estimate the overall airport on-time performance. This API is in currently in beta and only returns accurate data for airports located in the U.S. + 3.2.0 - 2019-11-07 -------------------- Add support for the `Trip Purpose Prediction API `_ diff --git a/amadeus/version.py b/amadeus/version.py index a132cd09..5a257d47 100644 --- a/amadeus/version.py +++ b/amadeus/version.py @@ -1,2 +1,2 @@ -version_info = (3, 2, 0) +version_info = (3, 3, 0) version = '.'.join(str(v) for v in version_info)