From c3a9815cd4ecb7b7038075114d6ae05820e61bde Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Thu, 5 Feb 2015 23:12:28 -0500 Subject: [PATCH] Updating changelog, preparing for release. --- CHANGES.rst | 11 +++++++++++ LICENSE.txt | 4 ++-- README.rst | 2 +- fedex/__init__.py | 2 +- fedex/config.py | 4 ++-- 5 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index e611517..b7bacaf 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Change Log ========== +1.0.15 +------ + +* Changing recommended install method to use pip + PyPi. (radlws) +* Updated rate_request and freight_rate_request examples for WSDL v16 + compatibility. (foxxyz) +* Updated rate service WSDL from v8 to v16. (foxxyz) +* Added a freight rate request example (mwcbrent) +* Bump ShipService WSDL to v13. (mwcbrent) +* Update rate example to show multiple ServiceTypes. (danielatdattrixdotcom) + 1.0.14 ------ diff --git a/LICENSE.txt b/LICENSE.txt index f91f763..7a15404 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2012, Greg Taylor +Copyright (c) 2015, Greg Taylor All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -22,4 +22,4 @@ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. \ No newline at end of file +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/README.rst b/README.rst index 528bad1..82c54dd 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,7 @@ and submit an issue if you have any problems or questions. Legal Mumbo Jumbo ----------------- -Copyright (C) 2012 Gregory Taylor +Copyright (C) 2015 Gregory Taylor This software is licensed under the BSD License. diff --git a/fedex/__init__.py b/fedex/__init__.py index 05ae231..b8c21c3 100644 --- a/fedex/__init__.py +++ b/fedex/__init__.py @@ -52,4 +52,4 @@ our U{Google Code project} and enter an issue in the U{Issue Tracker}. """ -VERSION = '1.0.14' +VERSION = '1.0.15' diff --git a/fedex/config.py b/fedex/config.py index 2ee1683..86e21a4 100644 --- a/fedex/config.py +++ b/fedex/config.py @@ -9,7 +9,7 @@ treat it as such. """ import os -import sys + class FedexConfig(object): """ @@ -70,4 +70,4 @@ def __init__(self, key, password, account_number=None, meter_number=None, freigh self.wsdl_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'wsdl') else: - self.wsdl_path = wsdl_path \ No newline at end of file + self.wsdl_path = wsdl_path