Set version to 0.4, and update the documentation
This commit is contained in:
parent
582e9d11f5
commit
cd31c1e2be
@ -1,6 +1,13 @@
|
||||
Changes
|
||||
=======
|
||||
|
||||
0.4 (next)
|
||||
----------
|
||||
|
||||
* Now supports Python 3.2
|
||||
|
||||
* String types handling is clearer.
|
||||
|
||||
0.3 (2012-04-20)
|
||||
----------------
|
||||
|
||||
|
@ -230,7 +230,10 @@ wsme_protocols = [
|
||||
'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):
|
||||
|
@ -11,13 +11,16 @@ the different protocols will map to theirs own basic types.
|
||||
|
||||
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
|
||||
- .. wsme:type:: text
|
||||
|
||||
A unicode string (:py:class:`unicode`)
|
||||
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
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
name = "WSME"
|
||||
version = "0.3"
|
||||
version = "0.4"
|
||||
|
||||
description = """Web Services Made Easy makes it easy to \
|
||||
implement multi-protocol webservices."""
|
||||
|
Loading…
x
Reference in New Issue
Block a user