From 41819f5cdb36b41fa25ca13d7f251ebfdd2b266f Mon Sep 17 00:00:00 2001 From: Alvaro Navarro Date: Thu, 19 Apr 2018 20:05:32 -0500 Subject: [PATCH] Release version 1.0.0 --- README.rst | 12 +++++++++--- amadeus/version.py | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 61fc1d7b..a188476f 100644 --- a/README.rst +++ b/README.rst @@ -14,12 +14,18 @@ For more details see the `Amadeus for Developers Portal Installation ------------ -This SDK requires Python 2.7+ or 3.3+. You can install install it -directly with pip. +This SDK requires Python 2.7+ or 3.3+. You can install it directly with pip. .. code:: sh - pip install amadeus==1.0.0b8 + pip install amadeus + +You can also add it to your `requirements.txt` file and install using: + +.. code:: sh + + pip install -r requirements.txt + Getting Started --------------- diff --git a/amadeus/version.py b/amadeus/version.py index 99f70d38..8d67337f 100644 --- a/amadeus/version.py +++ b/amadeus/version.py @@ -1,2 +1,2 @@ -version_info = (1, 0, '0b8') +version_info = (1, 0, 0) version = '.'.join(str(v) for v in version_info)