From 2cbcced749868251fd0af7364de970075de15311 Mon Sep 17 00:00:00 2001 From: Daniel Rasmussen Date: Mon, 13 Apr 2020 13:14:42 -0300 Subject: [PATCH] Release v0.11.1 --- CHANGES.rst | 25 ++++++++++++++++--------- nengo_bones/version.py | 4 ++-- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 2eb0c956..6feeebe8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -19,8 +19,22 @@ Release History - Removed - Fixed -0.11.0 (unreleased) -=================== +0.11.1 (April 13, 2020) +======================= + +**Changed** + +- Rendered documentation will not be uploaded if the html build fails (it will still + be uploaded if the linkchecker/doctest builds fail). (`#98`_) +- Rendered documentation will not be uploaded on cron builds. (`#98`_) +- Docs script will now clean up the built doc directory before execution, if it exists + (e.g., because the docs job is being rerun). (`#96`_) + +.. _#96: https://github.com/nengo/nengo-bones/pull/96 +.. _#98: https://github.com/nengo/nengo-bones/pull/98 + +0.11.0 (April 13, 2020) +======================= **Added** @@ -34,15 +48,8 @@ Release History - Will now use ``nengo-bones`` and ``nengo-sphinx-theme`` master builds (instead of the latest release), to streamline the process of distributing changes to those core repos. (`#97`_) -- Rendered documentation will not be uploaded if the html build fails (it will still - be uploaded if the linkchecker/doctest builds fail). (`#98`_) -- Rendered documentation will not be uploaded on cron builds. (`#98`_) -- Docs script will now clean up the built doc directory before execution, if it exists - (e.g., because the docs job is being rerun). (`#96`_) .. _#97: https://github.com/nengo/nengo-bones/pull/97 -.. _#98: https://github.com/nengo/nengo-bones/pull/98 -.. _#96: https://github.com/nengo/nengo-bones/pull/96 0.10.0 (March 19, 2020) ======================= diff --git a/nengo_bones/version.py b/nengo_bones/version.py index 4fb98158..0ff95c39 100644 --- a/nengo_bones/version.py +++ b/nengo_bones/version.py @@ -14,8 +14,8 @@ """ name = "nengo-bones" -version_info = (0, 11, 0) # (major, minor, patch) -dev = 0 +version_info = (0, 11, 1) # (major, minor, patch) +dev = None version = "{v}{dev}".format( v=".".join(str(v) for v in version_info),