Skip to content

Commit 079e9c5

Browse files
authored
Implement future changelog previews in the docs (#6055)
* Implement future changelog previews in the docs * Self-install on RTD * Fix spelling mistakes in the check notes
1 parent 9503980 commit 079e9c5

19 files changed

+78
-27
lines changed

.readthedocs.yml

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
1+
# Read the Docs configuration file
2+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html
3+
# for details
4+
5+
---
6+
version: 2
7+
8+
submodules:
9+
include: all # []
10+
exclude: []
11+
recursive: true
12+
113
build:
214
image: latest
315
python:
4-
version: 3.6
5-
pip_install: false
16+
version: 3.8
17+
install:
18+
- method: pip
19+
path: .
20+
- requirements: requirements/doc.txt
21+
...

CHANGES.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
=========
2-
Changelog
3-
=========
4-
51
..
62
You should *NOT* be adding new change log entries to this file, this
73
file is managed by towncrier. You *may* edit previous change logs to

CHANGES/3559.doc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Clarified WebSocketResponse closure in quickstart example.
1+
Clarified ``WebSocketResponse`` closure in the quick start example.

CHANGES/3828.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Disable implicit switch-back to pure python mode. The build fails loudly if aiohttp
2-
cannot be compiled with C Accellerators. Use AIOHTTP_NO_EXTENSIONS=1 to explicitly
1+
Disabled implicit switch-back to pure python mode. The build fails loudly if aiohttp
2+
cannot be compiled with C Accelerators. Use `AIOHTTP_NO_EXTENSIONS=1` to explicitly
33
disable C Extensions complication and switch to Pure-Python mode. Note that Pure-Python
44
mode is significantly slower than compiled one.

CHANGES/4054.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Implemented readuntil in StreamResponse
1+
Implemented ``readuntil`` in ``StreamResponse``

CHANGES/4277.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Add set_cookie and del_cookie methods to HTTPException
1+
Added ``set_cookie`` and ``del_cookie`` methods to ``HTTPException``

CHANGES/4299.bugfix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Delete older code in example (examples/web_classview.py)
1+
Delete older code in example (:file:`examples/web_classview.py`)

CHANGES/4302.bugfix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fixed the support of route handlers wrapped by functools.partial()
1+
Fixed the support of route handlers wrapped by :py:func:`functools.partial`

CHANGES/4452.doc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fix typo in client_quickstart docs.
1+
Fixed a typo in the ``client_quickstart`` doc.

CHANGES/4700.feature

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
AioHTTPTestCase is more async friendly now.
1+
``AioHTTPTestCase`` is more async friendly now.
22

3-
For people who use unittest and are used to use unittest.TestCase
4-
it will be easier to write new test cases like the sync version of the TestCase class,
3+
For people who use unittest and are used to use :py:exc:`~unittest.TestCase`
4+
it will be easier to write new test cases like the sync version of the :py:exc:`~unittest.TestCase` class,
55
without using the decorator `@unittest_run_loop`, just `async def test_*`.
6-
The only difference is that for the people using python3.7 and below a new dependency is needed, it is `asynctestcase`.
6+
The only difference is that for the people using python3.7 and below a new dependency is needed, it is ``asynctestcase``.

0 commit comments

Comments
 (0)