Skip to content

Commit 43e022c

Browse files
committed
Update version number, copyright year in docs and changelog for new release.
1 parent f11f797 commit 43e022c

File tree

3 files changed

+38
-11
lines changed

3 files changed

+38
-11
lines changed

CHANGES.rst

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
Release History
22
---------------
33

4+
1.1.0-beta.1
5+
============
6+
7+
This is a beta release and may contain bugs or unfinished features. Please
8+
provide bug reports or feedback via: https://github.com/mu-editor/mu/issues/new
9+
10+
* A new mode for ESP8266/ESP32 devices running MicroPython. This work and a
11+
significant amount of related refactoring was contributed with Viking like
12+
energy and efficiency by Martin Dybdal. This work has meant it was relatively
13+
easy to create two further new modes...
14+
* New mode for Lego Spike devices (thanks to Chris and Ethan at Tufts
15+
University for the help and support).
16+
* New mode for Raspberry Pi Pico (thanks to Zander, Martin and Carlos for the
17+
extensive testing).
18+
* Updates to the Microbit mode made by Spanish source-code wrangler
19+
extraordinaire (and resident Microbit expert) Carlos Pereira Atencio. The
20+
Microbit mode now supports versions 1 and 2 of the board.
21+
* Various bits of artwork used in the application have been updated (including
22+
a new [temporary] animated splash screen). Thanks to devdanzin for
23+
choreographing the initial work on the splash screen at short notice.
24+
* A complete re-write of the virtualenv and third party package handlers by the
25+
hugely talented Tim Golden. This was a long term and difficult refactoring
26+
project which Tim has delivered with great aplomb. This should make package
27+
handling much smoother and simpler.
28+
* Various smallish UI fixes, enhancements and smoothing by devdanzin. Thank you
29+
for these contributions - they really make a difference to the ease of use
30+
and friendly feel of Mu.
31+
* This version of Mu is packaged with stand-alone installers for Windows and
32+
OSX by the wonder that is PUP - a new packaging tool by our very own Tiago
33+
Montes ~ Portugal's Premier Python Packager Par-excellence. We have big plans
34+
for PUP... watch this space. :-)
35+
* Many many many minor bug fixes contributed by many many many people to whom
36+
we are eternally grateful.
37+
38+
We hope to release beta.2 very soon.
39+
440
1.0.3
541
=====
642

docs/conf.py

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747

4848
# General information about the project.
4949
project = "Mu"
50-
copyright = "2017-2018, Nicholas H.Tollervey"
50+
copyright = "2017-2021, Nicholas H.Tollervey and Mu Contributors"
5151
author = "Nicholas H.Tollervey"
5252

5353
# The version info for the project you're documenting, acts as replacement for
@@ -186,12 +186,3 @@
186186
"Miscellaneous",
187187
)
188188
]
189-
190-
191-
def remove_module_docstring(app, what, name, obj, options, lines):
192-
if what == "module":
193-
del lines[:]
194-
195-
196-
def setup(app):
197-
app.connect("autodoc-process-docstring", remove_module_docstring)

mu/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__title__ = "mu-editor"
77
__description__ = "A simple Python editor for beginner programmers."
88

9-
__version__ = "1.1.0.alpha.3"
9+
__version__ = "1.1.0.beta.1"
1010

1111
__license__ = "GPL3"
1212
__url__ = "https://github.com/mu-editor/mu"

0 commit comments

Comments
 (0)