Skip to content

Commit d015e0a

Browse files
committed
update release changes, doc readme
1 parent ebff31a commit d015e0a

File tree

4 files changed

+35
-23
lines changed

4 files changed

+35
-23
lines changed

CHANGES.rst

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
Change Log
22
==========
33

4-
Next release
5-
------------
4+
2.3.0
5+
-----
66

77
* Added Location Service using v3 WSDL. (radzhome)
88
* Added examples and unit tests for Location Service. (radzhome)
9-
* Updated certification process. (radzhome)
9+
* Updated certification process scripts to work with latest WSDLs. (radzhome)
1010
* Added warning logging for requests that come back with warning notes. (radzhome)
11-
11+
* Added PyPI, Travis, requires.io integration/badges. (radzhome)
12+
* Organization change from gtaylor to python-fedex-devs. (gtaylor)
13+
* Added deprecation message for movement service. (radzhome)
14+
* Added conversion tools to convert suds xml object into python dict. (radzhome)
15+
* Redirect logging to stdout for examples and tests when not ran via nose. (radzhome)
1216

1317
2.2.0
1418
-----

README.rst

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -33,48 +33,55 @@ The easiest way is via pip or easy_install::
3333
Quick Start
3434
-----------
3535

36-
Edit the `example_config.py` file in `examples/` with your fedex credentials
36+
- Clone this repository.
37+
38+
- Edit the `example_config.py` file in See `examples/ <examples/>`_ with your fedex credentials
3739
and run any of the provided examples.
3840

3941
Documentation
4042
-------------
4143

42-
Refer to the documentation_ for more details on the project.
44+
Refer to the documentation_ for more details on the project. Latest doc builds
45+
are found in docs_ and doc build scripts in doc_source_.
4346

4447
There are also a lot of useful examples under the examples directory within
4548
this directory.
4649

4750
Support
4851
-------
4952

50-
Head over to https://github.com/gtaylor/python-fedex/issues
51-
and submit an issue if you have any problems or questions.
53+
Issues & Questions: https://github.com/gtaylor/python-fedex/issues
54+
5255
Most problems are going to require investigation or a submitted
5356
pull request by someone from the Python FedEx Developers organization.
5457
To contribute a new feature or service, feel free to create a pull request.
58+
We are always looking for new contributors to help maintain the project.
5559

5660
Fedex Support and Documentation
5761
-------------------------------
5862

5963
Fedex Support Email: [email protected]
6064
Developer Portal: http://www.fedex.com/us/developer/
65+
Updates To Services: https://www.fedex.com/us/developer/web-services/process.html (FedEx Web Services Announcements)
6166

6267
Todos
6368
-----
64-
* Read the docs documentation
65-
* Travis test integration
66-
* Increase validation
67-
* Remove deprecated services
69+
70+
- Read the docs documentation
71+
- Increase service specific request validation
72+
- Remove deprecated services (package movement service)
6873

6974
Legal
7075
-----
7176

7277
Copyright (C) 2008-2015 Greg Taylor
73-
Copyright (C) 2016 Python FedEx Developers
78+
Copyright (C) 2015-2016 Python FedEx Developers
7479

7580
This software is licensed under the BSD License.
7681

7782
python-fedex is not authored by, endorsed by, or in any way affiliated with
7883
FedEx.
7984

8085
.. _documentation: https://pythonhosted.org/fedex/
86+
.. _docs: docs/
87+
.. _doc_source: doc_source/

doc_source/README.rst

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
python-fedex Examples
2-
=====================
1+
python-fedex documentation
2+
==========================
33

4-
This directory contains a number of examples of how to use python-fedex. For
5-
these examples to work, you must open example_config.py and enter your
6-
testing account credentials there.
4+
This directory contains build scripts for python-fedex documentation
5+
using epydoc 3.0.1. The following was used to generate doc:
76

8-
To run all tests from bash, type:
7+
cd python-fedex/docs
8+
epydoc -v -o 2.X.X ../fedex/
99

10-
for f in *.py; do python "$f"; done
11-
# Or use the below to only see response errors:
12-
for f in *.py; do python "$f"; done | grep -i error
10+
The current documentation is hosted at https://pythonhosted.org/fedex/.
11+
Sometime inn the near future, the plan is to move documentation over from
12+
epydoc to sphinx, and host it on documentation at
13+
http://python-fedex.readthedocs.org/.

fedex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
our U{Github project<http://github.com/gtaylor/python-fedex/>} and enter
5353
an issue in the U{Issue Tracker<http://github.com/gtaylor/python-fedex/issues>}.
5454
"""
55-
VERSION = __version__ = '2.2.0'
55+
VERSION = __version__ = '2.3.0'

0 commit comments

Comments
 (0)