From 56888149ef07f7e28049984ce74adccfd329a556 Mon Sep 17 00:00:00 2001 From: Benjamin Bach Date: Wed, 28 Feb 2018 11:52:03 +0100 Subject: [PATCH] Release notes and 0.4a3 bump --- README.rst | 2 +- docs/customization.rst | 3 +++ docs/release_notes.rst | 17 +++++++++++------ src/wiki/__init__.py | 2 +- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 633eda0f..d34cc8a7 100644 --- a/README.rst +++ b/README.rst @@ -26,7 +26,7 @@ The below table explains which Django versions are supported. +------------------+----------------+--------------+ | Release | Django | Upgrade from | +==================+================+==============+ -| 0.4a2 | 1.11, 2.0 | 0.3 | +| 0.4a3 | 1.11, 2.0 | 0.3 | +------------------+----------------+--------------+ | 0.3.x | 1.8, 1.9, | 0.2 | | | 1.10, 1.11 | | diff --git a/docs/customization.rst b/docs/customization.rst index c4c99ecd..114b696d 100644 --- a/docs/customization.rst +++ b/docs/customization.rst @@ -50,6 +50,7 @@ of a custom ``AppConfig`` to the dotted import path of either a ``WikiSite`` sub or a callable that returns a site instance. .. code-block:: python + # myproject/sites.py from wiki.sites import WikiSite @@ -58,6 +59,7 @@ or a callable that returns a site instance. ... .. code-block:: python + # myproject/apps.py from wiki.apps import WikiConfig @@ -66,6 +68,7 @@ or a callable that returns a site instance. default_site = 'myproject.sites.MyWikiSite' .. code-block:: python + # myproject/settings.py INSTALLED_APPS = [ diff --git a/docs/release_notes.rst b/docs/release_notes.rst index f3d61ab1..1ee627d1 100644 --- a/docs/release_notes.rst +++ b/docs/release_notes.rst @@ -12,7 +12,7 @@ The next series **0.4** will support Django 1.11 and Django 2.x and be for Python 3.4+. -django-wiki 0.4a2 +django-wiki 0.4a3 ----------------- Added @@ -20,6 +20,7 @@ Added * Django 2 support :url-issue:`755` (Raffaele Salmaso & Mads Jensen) * Added ``wiki.sites.WikiSite`` for easy customization :url-issue:`827` + * Automatic link highlighting of URLs handles lots of new patterns :url-issue:`816` (Branko Majic) Changed ~~~~~~~ @@ -27,13 +28,17 @@ Changed * Use full path names for ``MARKDOWN_KWARGS['extensions']`` as short names support wil be removed in ``Markdown 2.7`` :url-issue:`823` * Support for ``include('wiki.urls')`` for urls instantiation :url-issue:`827` + * Use Django's 'checks.py' pattern to test configuration (Raffaele Salmaso & Mads Jensen) :url-issue:`830` :url-issue:`807` + * Test coverage added: Images plugin + Account handling (Mads Jensen) :url-issue:`804` + * Last couple of non-CBVs (Class Based Views) refactored to CBV (Raffaele Salmaso & Mads Jensen) :url-issue:`788` :url-issue:`819` :url-issue:`808` + * Big cleanup: Deprecating lots of Python 2.7 specific code (Mads Jensen & Raffaele Salmaso) `See: >30 PRs `__ Fixed ~~~~~ * Use ``user.is_authenticated/is_anonymous`` as a boolean :url-issue:`790` (Raffaele Salmaso) * Use ``simple_tag`` for assignment tag :url-issue:`791` (Raffaele Salmaso) - * Use ``pytest`` instead of ``runtests.py`` :url-issue:`781` (Branko Majic) + * Direct invocation of ``pytest`` fixed (removing ``runtests.py``) :url-issue:`781` (Branko Majic) Deprecated/Removed ~~~~~~~~~~~~~~~~~~ @@ -397,21 +402,21 @@ News archive April 15, 2017 ~~~~~~~~~~~~~~ -0.2.3 released: `Release notes `_ +0.2.3 released: `Release notes `__ -0.2.2 released: `Release notes `_ +0.2.2 released: `Release notes `__ February 27, 2017 ~~~~~~~~~~~~~~~~~ -0.2.1 released: `Release notes `_ +0.2.1 released: `Release notes `__ December 27, 2016 ~~~~~~~~~~~~~~~~~ -0.2 final released: `Release notes `_ +0.2 final released: `Release notes `__ June 19, 2016 diff --git a/src/wiki/__init__.py b/src/wiki/__init__.py index f91b2106..f99ad2df 100644 --- a/src/wiki/__init__.py +++ b/src/wiki/__init__.py @@ -20,5 +20,5 @@ from wiki.core.version import get_version default_app_config = 'wiki.apps.WikiConfig' -VERSION = (0, 4, 0, 'alpha', 2) +VERSION = (0, 4, 0, 'alpha', 3) __version__ = get_version(VERSION) -- 2.45.2