Skip to content

Commit

Permalink
Prepare release v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyroux committed Nov 7, 2019
1 parent 94bb6be commit 56ad9a3
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 9 deletions.
30 changes: 22 additions & 8 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,37 +1,51 @@
Changelog
=========
3.2.0 - 2019-11-07
--------------------
Add support for the `Trip Purpose Prediction API <https://developers.amadeus.com/self-service/category/trip/api-doc/trip-purpose-prediction>`_

The Trip Purpose Prediction API returns the probability of whether a round-trip flight itinerary is for business or leisure travel. The API takes flight dates, departure city and arrival city and then applies a machine-learning model trained with Amadeus historical data to determine the probability that the itinerary is for business or leisure travel. This API is useful for gaining insight and optimizing the search and shopping experience.

Add support for the `Hotel Ratings API <https://developers.amadeus.com/self-service/category/hotel/api-doc/hotel-ratings>`_

The Hotel Ratings API provides hotel ratings based on automated sentiment analysis algorithm applied on the online reviews. Apart from an overall rating for a hotel also provides ratings for different categories of each (e.g.: staff, pool, internet, location). This provides a key content information for decision making during a shopping experience being able to compare how good a hotel is compared to others, sort hotels by ratings, filter by categories or recommend a hotel based on the trip context.

Release of the `Flight Choice Prediction API <https://developers.amadeus.com/self-service/category/air/api-doc/flight-choice-prediction>`_

The Flight Choice Prediction API allows developers to forecast traveler choices in the context of search & shopping. Exposing machine learning & AI services for travel, this API consumes the output of the Flight Low-fare Search API and returns augmented content with probabilities of choices for each flight offers.

3.1.0 - 2019-03-25
--------------------
--------------------
Release of the `Points Of Interest API <https://developers.amadeus.com/self-service/category/210/api-doc/55>`_

The Points Of Interest API, powered by AVUXI TopPlace, is a search API that returns a list of popular places for a particular location. The location can be defined as area bound by four coordinates or as a geographical coordinate with a radius. The popularity of a place or 'point of interest' is determined by AVUXI's proprietary algorithm that considers factors such as ratings, check-ins, category scores among other factors from a host of online media sources.


3.0.0 - 2019-01-22
--------------------
** Hotel Search v2 has been deployed (Hotel Search v1 is now deprecated) **
--------------------
** Hotel Search v2 has been deployed (Hotel Search v1 is now deprecated) **

** General **
- Remove support of Hotel Search v1
- URLs for all three endpoints have been simplified for ease-of-use and consistency
** Find Hotels - 1st endpoint **
** Find Hotels - 1st endpoint **
- The parameter `hotels` has been renamed to `hotelIds`
** View Hotel Rooms - 2nd endpoint **
** View Hotel Rooms - 2nd endpoint **
- Update from `amadeus.shopping.hotel('IALONCHO').hotel_offers.get` to `amadeus.shopping.hotel_offers_by_hotel.get(hotelId: 'IALONCHO')`
- Now get all images in ‘View Hotels Rooms’ endpoint using the view parameter as `FULL_ALL_IMAGES`
** View Room Details - 3rd endpoint **
** View Room Details - 3rd endpoint **
- Updated from `amadeus.shopping.hotel('IALONCHO').offer('XXX').get` to `amadeus.shopping.hotel_offer('XXX').get`
- Image category added under Media in the response
- Hotel distance added in the response
- Response now refers to the common HotelOffer object model

2.0.1 - 2019-01-17
--------------------
--------------------

Fix pagination URL encoding parameters

2.0.0 - 2018-10-14
--------------------
--------------------

`Flight Most Searched Destinations <https://developers.amadeus.com/self-service/category/203/api-doc/6>`_: Redesign of the API - Split the previous endpoint in 2 endpoints:

Expand Down
2 changes: 1 addition & 1 deletion amadeus/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version_info = (3, 1, 0)
version_info = (3, 2, 0)
version = '.'.join(str(v) for v in version_info)

0 comments on commit 56ad9a3

Please sign in to comment.