From ed5c1782e10c60a3eddf8285c81f997423bc3628 Mon Sep 17 00:00:00 2001 From: Vitaliy Kucheriavyi Date: Sun, 20 Dec 2020 12:39:12 +0200 Subject: [PATCH] Moving release notes to github --- docs/docs/releases.md | 50 ++------------------------------ tests/test_docs/test_releases.py | 9 ------ 2 files changed, 2 insertions(+), 57 deletions(-) delete mode 100644 tests/test_docs/test_releases.py diff --git a/docs/docs/releases.md b/docs/docs/releases.md index 7e941489f..1b2093494 100644 --- a/docs/docs/releases.md +++ b/docs/docs/releases.md @@ -1,52 +1,6 @@ # Release Notes -## 0.9.4 +Follow and subscribe new releases on GitHub: - * [Nested routers support](https://django-ninja.rest-framework.com/tutorial/routers/#nested-routers) (Thanks to @fojetin) +https://github.com/vitalik/django-ninja/releases -## 0.9.2 - - * [Operations OpenAPI parameters](http://django-ninja.rest-framework.com/tutorial/operation_params/) - * [OpenAPI description] (Thanks to @fojetin) - -## 0.9.1 - - * [Multiple Response Schemas support](http://django-ninja.rest-framework.com/tutorial/response-schema/#multiple-response-schemas) (Thanks to @dozer133) - -## 0.8.4 - - * Fixed extra bug for [response schema output](https://github.com/vitalik/django-ninja/issues/19) with `List[Item]` schema - * Fixed [Composable query parameters #34](https://github.com/vitalik/django-ninja/issues/34) - -## 0.8.0 - - * Fixed [response schema output](https://github.com/vitalik/django-ninja/issues/19) - * Pydantic 1.7 support - -## 0.7.0 - - * Added [csrf](/tutorial/csrf) configuration. - -## 0.6.0 - - * Fixed router authentication (#20) - -## 0.5.0 - - * Responses now support querysets - -## 0.4.0 - - * Locked to pydantic 1.6 and with various bug fixes automatically solved - -## 0.3.0 - - * Added [response schema](/tutorial/response-schema) parameter. - -## 0.2.0 - - * Added async operations. - -## 0.1.1 - - * First release to public. diff --git a/tests/test_docs/test_releases.py b/tests/test_docs/test_releases.py deleted file mode 100644 index 1ce8a3711..000000000 --- a/tests/test_docs/test_releases.py +++ /dev/null @@ -1,9 +0,0 @@ -from os.path import join, dirname -import ninja - - -def test_releases_page(): - releses_file = join(dirname(__file__), "../../docs/docs/releases.md") - with open(releses_file, "r") as f: - page_contents = f.read() - assert ninja.__version__ in page_contents