Skip to content

Commit

Permalink
Update version number, copyright year in docs and changelog for new r…
Browse files Browse the repository at this point in the history
…elease.
  • Loading branch information
ntoll committed Jan 31, 2021
1 parent f11f797 commit 43e022c
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 11 deletions.
36 changes: 36 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -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
=====

Expand Down
11 changes: 1 addition & 10 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)
2 changes: 1 addition & 1 deletion mu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 43e022c

Please sign in to comment.