Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sanic-org/sanic
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.8.1
Choose a base ref
...
head repository: sanic-org/sanic
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.8.2
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Sep 13, 2018

  1. Transfer ownership

    channelcat authored Sep 13, 2018
    Copy the full SHA
    7ae0eb0 View commit details
  2. Copy the full SHA
    d38fc17 View commit details
Showing with 8 additions and 8 deletions.
  1. +7 −7 README.rst
  2. +1 −1 sanic/__init__.py
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -7,9 +7,9 @@ Sanic is a Flask-like Python 3.5+ web server that's written to go fast. It's ba

On top of being Flask-like, Sanic supports async request handlers. This means you can use the new shiny async/await syntax from Python 3.5, making your code non-blocking and speedy.

Sanic is developed `on GitHub <https://github.com/channelcat/sanic/>`_. Contributions are welcome!
Sanic is developed `on GitHub <https://github.com/huge-success/sanic/>`_. Contributions are welcome!

If you have a project that utilizes Sanic make sure to comment on the `issue <https://github.com/channelcat/sanic/issues/396>`_ that we use to track those projects!
If you have a project that utilizes Sanic make sure to comment on the `issue <https://github.com/huge-success/sanic/issues/396>`_ that we use to track those projects!

Hello World Example
-------------------
@@ -47,8 +47,8 @@ Documentation

.. |Join the chat at https://gitter.im/sanic-python/Lobby| image:: https://badges.gitter.im/sanic-python/Lobby.svg
:target: https://gitter.im/sanic-python/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
.. |Build Status| image:: https://travis-ci.org/channelcat/sanic.svg?branch=master
:target: https://travis-ci.org/channelcat/sanic
.. |Build Status| image:: https://travis-ci.org/huge-success/sanic.svg?branch=master
:target: https://travis-ci.org/huge-success/sanic
.. |Documentation| image:: https://readthedocs.org/projects/sanic/badge/?version=latest
:target: http://sanic.readthedocs.io/en/latest/?badge=latest
.. |PyPI| image:: https://img.shields.io/pypi/v/sanic.svg
@@ -59,11 +59,11 @@ Documentation

Examples
--------
`Non-Core examples <https://github.com/channelcat/sanic/wiki/Examples/>`_. Examples of plugins and Sanic that are outside the scope of Sanic core.
`Non-Core examples <https://github.com/huge-success/sanic/wiki/Examples/>`_. Examples of plugins and Sanic that are outside the scope of Sanic core.

`Extensions <https://github.com/channelcat/sanic/wiki/Extensions/>`_. Sanic extensions created by the community.
`Extensions <https://github.com/huge-success/sanic/wiki/Extensions/>`_. Sanic extensions created by the community.

`Projects <https://github.com/channelcat/sanic/wiki/Projects/>`_. Sanic in production use.
`Projects <https://github.com/huge-success/sanic/wiki/Projects/>`_. Sanic in production use.


TODO
2 changes: 1 addition & 1 deletion sanic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from sanic.app import Sanic
from sanic.blueprints import Blueprint

__version__ = '0.8.1'
__version__ = '0.8.2'

__all__ = ['Sanic', 'Blueprint']