Skip to content

Commit c3a9815

Browse files
committed
Updating changelog, preparing for release.
1 parent 481370c commit c3a9815

File tree

5 files changed

+17
-6
lines changed

5 files changed

+17
-6
lines changed

CHANGES.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change Log
22
==========
33

4+
1.0.15
5+
------
6+
7+
* Changing recommended install method to use pip + PyPi. (radlws)
8+
* Updated rate_request and freight_rate_request examples for WSDL v16
9+
compatibility. (foxxyz)
10+
* Updated rate service WSDL from v8 to v16. (foxxyz)
11+
* Added a freight rate request example (mwcbrent)
12+
* Bump ShipService WSDL to v13. (mwcbrent)
13+
* Update rate example to show multiple ServiceTypes. (danielatdattrixdotcom)
14+
415
1.0.14
516
------
617

LICENSE.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012, Greg Taylor
1+
Copyright (c) 2015, Greg Taylor
22
All rights reserved.
33

44
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
2222
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
2323
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
2424
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ and submit an issue if you have any problems or questions.
5050
Legal Mumbo Jumbo
5151
-----------------
5252

53-
Copyright (C) 2012 Gregory Taylor
53+
Copyright (C) 2015 Gregory Taylor
5454

5555
This software is licensed under the BSD License.
5656

fedex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
our U{Google Code project<http://code.google.com/p/python-fedex/>} and enter
5353
an issue in the U{Issue Tracker<http://code.google.com/p/python-fedex/issues/list>}.
5454
"""
55-
VERSION = '1.0.14'
55+
VERSION = '1.0.15'

fedex/config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
treat it as such.
1010
"""
1111
import os
12-
import sys
12+
1313

1414
class FedexConfig(object):
1515
"""
@@ -70,4 +70,4 @@ def __init__(self, key, password, account_number=None, meter_number=None, freigh
7070
self.wsdl_path = os.path.join(os.path.dirname(os.path.abspath(__file__)),
7171
'wsdl')
7272
else:
73-
self.wsdl_path = wsdl_path
73+
self.wsdl_path = wsdl_path

0 commit comments

Comments
 (0)