Skip to content

Commit 858c48f

Browse files
authored
Merge branch 'master' into migrate-github-actions
2 parents 2b5913e + b17344b commit 858c48f

4 files changed

Lines changed: 8 additions & 40 deletions

File tree

.travis.yml

Lines changed: 0 additions & 35 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
Changelog
22
=========
3+
5.1.1 - 2021-05-12
4+
--------------------
5+
Remove travis ci release support and creating github action
6+
37
5.1.0 - 2021-05-12
48
--------------------
59
Add support for the `Flight Availabilities Search API <https://developers.amadeus.com/self-service/category/air/api-doc/flight-availabilities-search/api-reference>`_
610

711
Add support for the `Branded Fares Upsell API <https://developers.amadeus.com/self-service/category/air/api-doc/branded-fares-upsell/api-reference>`_
812

9-
1013
5.0.0 - 2021-02-02
1114
--------------------
1215
Remove support for Python 2. The SDK requires Python 3.4+

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ application <https://developers.amadeus.com/my-apps/>`__.
4141
4242
try:
4343
response = amadeus.shopping.flight_offers_search.get(
44-
originLocationCode='SYD',
45-
destinationLocationCode='BKK',
46-
departureDate='2021-11-01',
44+
originLocationCode='MAD',
45+
destinationLocationCode='ATH',
46+
departureDate='2022-06-01',
4747
adults=1)
4848
print(response.data)
4949
except ResponseError as error:

amadeus/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (5, 1, 0)
1+
version_info = (5, 1, 1)
22
version = '.'.join(str(v) for v in version_info)

0 commit comments

Comments
 (0)