Skip to content

Commit

Permalink
Make a statement about stopping aiorest development in CHANGES and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Jan 18, 2015
1 parent cba79a2 commit 3129ee6
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
CHANGES
-------

0.4.0 (2015-01-18)
^^^^^^^^^^^^^^^^^^

* The aiorest library development has stopped, use aiohttp.web instead.

* Update *aiorest* code to be compatible with *aiohttp 0.14 release*.

0.3.1 (2014-12-22)
^^^^^^^^^^^^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion aiorest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import sys


__version__ = '0.3.1'
__version__ = '0.4.0'

version = __version__ + ' , Python ' + sys.version

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.3'
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.3.1'
release = '0.4.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
22 changes: 22 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,28 @@ aiorest

aiorest is a minimalistic framework to build JSON REST server.

aiorest development has stopped
-------------------------------

The project always was in experimental status: we have tried to make the proof
of concept for ``aiohttp`` high level server.

Now the work is done, the most important parts transplanted to
``aiohttp.web``: ``Request`` and ``Response``.

Some ``aiorest`` features are not supported by ``aiohttp.web`` yet:
sessions, CORS and security.

We are working hard on the issue by making ``aiohttp`` extension
libraries for those ones.

We will keep *aiorest* work on top of *aiohttp* new versions for a
while.

Please report about incompatibility bugs to *aiorest github
issue tracker* -- we'll fix those.


Features
--------

Expand Down

0 comments on commit 3129ee6

Please sign in to comment.