From b6453e9fac243f522c939ccd9eabdc3e9dfcd3f0 Mon Sep 17 00:00:00 2001 From: Adam Hopkins Date: Wed, 15 May 2019 07:46:58 +0300 Subject: [PATCH 1/5] Update stale.yml --- .github/stale.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/stale.yml b/.github/stale.yml index bf9b0fb3..8055777d 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -6,6 +6,7 @@ daysUntilClose: 30 exemptLabels: - bug - urgent + - necessary # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable @@ -14,4 +15,4 @@ markComment: > recent activity. It will be closed if no further activity occurs. If this is incorrect, please respond with an update. Thank you for your contributions. # Comment to post when closing a stale issue. Set to `false` to disable -closeComment: false \ No newline at end of file +closeComment: false From 1b984422dbf97adf93afdfe235f657264c94677d Mon Sep 17 00:00:00 2001 From: Yun Xu Date: Sat, 18 May 2019 11:02:46 -0700 Subject: [PATCH 2/5] add help wanted in stale.yml --- .github/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/stale.yml b/.github/stale.yml index 8055777d..1ddb59e7 100644 --- a/.github/stale.yml +++ b/.github/stale.yml @@ -7,6 +7,7 @@ exemptLabels: - bug - urgent - necessary + - help wanted # Label to use when marking an issue as stale staleLabel: stale # Comment to post when marking an issue as stale. Set to `false` to disable From 1c9141bd5dff6edb1bdf387f72595f93ecc33a94 Mon Sep 17 00:00:00 2001 From: zach valenta Date: Sat, 18 May 2019 15:05:03 -0400 Subject: [PATCH 3/5] fix typo --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 334704b7..66e8db15 100644 --- a/README.rst +++ b/README.rst @@ -60,7 +60,7 @@ Sanic is a **Python 3.6+** web server and web framework that's written to go fas `Source code on GitHub `_ | `Help and discussion board `_. -The project is maintained by the community, for the community **Contributions are welcome!** +The project is maintained by the community, for the community. **Contributions are welcome!** The goal of the project is to provide a simple way to get up and running a highly performant HTTP server that is easy to build, to expand, and ultimately to scale. From 83e3d4ca1f366a033a17485a7163ef807a4c1bd2 Mon Sep 17 00:00:00 2001 From: Harsha Narayana Date: Mon, 20 May 2019 06:46:18 +0530 Subject: [PATCH 4/5] doc: GIT-1582: add fedora package dependency Signed-off-by: Harsha Narayana --- README.rst | 6 ++++++ docs/sanic/getting_started.md | 2 ++ 2 files changed, 8 insertions(+) diff --git a/README.rst b/README.rst index 66e8db15..c7d22cbc 100644 --- a/README.rst +++ b/README.rst @@ -78,6 +78,12 @@ Installation $ pip3 install --no-binary :all: sanic +.. note:: + + If you are running on a clean install of Fedora 28 or above, please make sure you have the ``redhat-rpm-config`` package installed in case if you want to + use ``sanic`` with ``ujson`` dependency. + + Hello World Example ------------------- diff --git a/docs/sanic/getting_started.md b/docs/sanic/getting_started.md index daae4d66..c6a688a4 100644 --- a/docs/sanic/getting_started.md +++ b/docs/sanic/getting_started.md @@ -6,6 +6,8 @@ syntax, so earlier versions of python won't work. ## 1. Install Sanic +> If you are running on a clean install of Fedora 28 or above, please make sure you have the ``redhat-rpm-config`` package installed in case if you want to use ``sanic`` with ``ujson`` dependency. + ```bash pip3 install sanic ``` From 16d262e3e5787726a500190570e4d61a544a73cb Mon Sep 17 00:00:00 2001 From: Yun Xu Date: Wed, 22 May 2019 15:10:32 -0700 Subject: [PATCH 5/5] release: v19.6.0 --- sanic/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sanic/__init__.py b/sanic/__init__.py index c7c69bd4..a1a2bf49 100644 --- a/sanic/__init__.py +++ b/sanic/__init__.py @@ -2,6 +2,6 @@ from sanic.app import Sanic from sanic.blueprints import Blueprint -__version__ = "19.03.1" +__version__ = "19.6.0" __all__ = ["Sanic", "Blueprint"]