From 43e022c5ee4f3d01ba5264cb21d43bba843e113a Mon Sep 17 00:00:00 2001 From: "Nicholas H.Tollervey" Date: Sun, 31 Jan 2021 20:28:42 +0000 Subject: [PATCH] Update version number, copyright year in docs and changelog for new release. --- CHANGES.rst | 36 ++++++++++++++++++++++++++++++++++++ docs/conf.py | 11 +---------- mu/__init__.py | 2 +- 3 files changed, 38 insertions(+), 11 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c2266829a..baa97e804 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,42 @@ Release History --------------- +1.1.0-beta.1 +============ + +This is a beta release and may contain bugs or unfinished features. Please +provide bug reports or feedback via: https://github.com/mu-editor/mu/issues/new + +* A new mode for ESP8266/ESP32 devices running MicroPython. This work and a + significant amount of related refactoring was contributed with Viking like + energy and efficiency by Martin Dybdal. This work has meant it was relatively + easy to create two further new modes... +* New mode for Lego Spike devices (thanks to Chris and Ethan at Tufts + University for the help and support). +* New mode for Raspberry Pi Pico (thanks to Zander, Martin and Carlos for the + extensive testing). +* Updates to the Microbit mode made by Spanish source-code wrangler + extraordinaire (and resident Microbit expert) Carlos Pereira Atencio. The + Microbit mode now supports versions 1 and 2 of the board. +* Various bits of artwork used in the application have been updated (including + a new [temporary] animated splash screen). Thanks to devdanzin for + choreographing the initial work on the splash screen at short notice. +* A complete re-write of the virtualenv and third party package handlers by the + hugely talented Tim Golden. This was a long term and difficult refactoring + project which Tim has delivered with great aplomb. This should make package + handling much smoother and simpler. +* Various smallish UI fixes, enhancements and smoothing by devdanzin. Thank you + for these contributions - they really make a difference to the ease of use + and friendly feel of Mu. +* This version of Mu is packaged with stand-alone installers for Windows and + OSX by the wonder that is PUP - a new packaging tool by our very own Tiago + Montes ~ Portugal's Premier Python Packager Par-excellence. We have big plans + for PUP... watch this space. :-) +* Many many many minor bug fixes contributed by many many many people to whom + we are eternally grateful. + +We hope to release beta.2 very soon. + 1.0.3 ===== diff --git a/docs/conf.py b/docs/conf.py index cfd6ac6de..629757b54 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,7 @@ # General information about the project. project = "Mu" -copyright = "2017-2018, Nicholas H.Tollervey" +copyright = "2017-2021, Nicholas H.Tollervey and Mu Contributors" author = "Nicholas H.Tollervey" # The version info for the project you're documenting, acts as replacement for @@ -186,12 +186,3 @@ "Miscellaneous", ) ] - - -def remove_module_docstring(app, what, name, obj, options, lines): - if what == "module": - del lines[:] - - -def setup(app): - app.connect("autodoc-process-docstring", remove_module_docstring) diff --git a/mu/__init__.py b/mu/__init__.py index 3a7cd81ed..aa77b7b8a 100644 --- a/mu/__init__.py +++ b/mu/__init__.py @@ -6,7 +6,7 @@ __title__ = "mu-editor" __description__ = "A simple Python editor for beginner programmers." -__version__ = "1.1.0.alpha.3" +__version__ = "1.1.0.beta.1" __license__ = "GPL3" __url__ = "https://github.com/mu-editor/mu"