From 95a723f40811f3c8fd9e159fbde40d4b501679f2 Mon Sep 17 00:00:00 2001 From: Michael Goerz Date: Mon, 14 Dec 2020 17:01:43 -0500 Subject: [PATCH] Release 0.4.0 --- HISTORY.rst | 6 +++--- README.rst | 2 +- src/doctr_versions_menu/__init__.py | 5 ++--- 3 files changed, 6 insertions(+), 7 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6cded28..07c8b09 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,8 +2,8 @@ History ======= -(next release) --------------- +0.4.0 (2020-12-14) +------------------ * Added: The label in the top left corner of the version menu can now be configured in ``conf.py`` (setting ``menu_title``). * Added: ``--default-branch`` option, ```` group for folder specifications, and ``default-branch`` field in ``versions.json`` (`#12`_) @@ -13,7 +13,7 @@ History This release addresses two major compatibility issues: 1. Both `git `_ and `Github `_ have recently switched the name of the default branch from "master" to "main". This release adds support for new projects using "main" as their default branch. -2. As of December 2020, Travis CI has `stopped their support for open source `_. Consequently, Doctr_ can no longer be used to deploy documentation at no cost. This release adds rudimentary support for deploying the documenation with `Github Actions`_ instead of Doctr, see `Deployment with Github Actions `_. +2. As of December 2020, Travis CI has `stopped their support for open source `_. Consequently, Doctr_ can no longer be used to deploy documentation at no cost. This release adds rudimentary support for deploying the documenation with `Github Actions`_ instead of Doctr, see `Deployment with Github Actions `_. 0.3.0 (2020-08-03) diff --git a/README.rst b/README.rst index 3dc4fbf..6dcddab 100644 --- a/README.rst +++ b/README.rst @@ -52,7 +52,7 @@ See the ``doctr-versions-menu`` documentation itself for a `live example `_ for a workaround. +⚠️ **As of December 2020, Travis no longer provides free services to open source projects.** See `Deployment with Github Actions `_ for a workaround. Installation diff --git a/src/doctr_versions_menu/__init__.py b/src/doctr_versions_menu/__init__.py index c0ff8b1..a33fc63 100644 --- a/src/doctr_versions_menu/__init__.py +++ b/src/doctr_versions_menu/__init__.py @@ -4,15 +4,14 @@ extension and a command line program. """ -__version__ = '0.3.0+dev' +__version__ = '0.4.0' # All members whose name does not start with an underscore must be listed # either in __all__ or in __private__ __all__ = [] __private__ = ['setup'] -from . import ext -from . import cli +from . import cli, ext def setup(app):