Set version to 0.4, and update the documentation

This commit is contained in:
Christophe de Vienne 2012-05-11 14:22:46 +02:00
parent 582e9d11f5
commit cd31c1e2be
4 changed files with 19 additions and 6 deletions

View File

@ -1,6 +1,13 @@
Changes Changes
======= =======
0.4 (next)
----------
* Now supports Python 3.2
* String types handling is clearer.
0.3 (2012-04-20) 0.3 (2012-04-20)
---------------- ----------------

View File

@ -230,7 +230,10 @@ wsme_protocols = [
'restjson', 'restxml', 'soap', 'extdirect' 'restjson', 'restxml', 'soap', 'extdirect'
] ]
intersphinx_mapping = {'python': ('http://docs.python.org/', None)} intersphinx_mapping = {
'python': ('http://docs.python.org/', None),
'six': ('http://packages.python.org/six/', None),
}
def setup(app): def setup(app):

View File

@ -11,13 +11,16 @@ the different protocols will map to theirs own basic types.
The native types are : The native types are :
- .. wsme:type:: str - .. wsme:type:: bytes
A non unicode string (:py:class:`str`) A pure-ascii string (:py:class:`wsme.types.bytes` which is
:py:class:`str` in Python 2 and :py:class:`bytes` in Python 3).
- .. wsme:type:: unicode
A unicode string (:py:class:`unicode`) - .. wsme:type:: text
A unicode string (:py:class:`wsme.types.text` which is
:py:class:`unicode` in Python 2 and :py:class:`str` in Python 3).
- .. wsme:type:: int - .. wsme:type:: int

View File

@ -1,5 +1,5 @@
name = "WSME" name = "WSME"
version = "0.3" version = "0.4"
description = """Web Services Made Easy makes it easy to \ description = """Web Services Made Easy makes it easy to \
implement multi-protocol webservices.""" implement multi-protocol webservices."""