Skip to content

Commit

Permalink
Release Candidate 1.
Browse files Browse the repository at this point in the history
  • Loading branch information
ntoll committed Jul 16, 2018
1 parent 6088ced commit f975a57
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,12 @@ install:
- cmd: make win64
- ps: Rename-Item -path .\build upload64
- cmd: dir upload64\nsis
- ps: Rename-Item .\upload64\nsis\mu_1.0.0b17.exe mu_$(get-date -f yyyy-MM-dd_HH_mm)_$($env:APPVEYOR_REPO_BRANCH)_$($env:APPVEYOR_REPO_COMMIT.subString(0,7))_64bit.exe
- ps: Rename-Item .\upload64\nsis\mu_1.0.0rc1.exe mu_$(get-date -f yyyy-MM-dd_HH_mm)_$($env:APPVEYOR_REPO_BRANCH)_$($env:APPVEYOR_REPO_COMMIT.subString(0,7))_64bit.exe
# 32bit
- cmd: make win32
- ps: Rename-Item -path .\build upload32
- cmd: dir upload32\nsis
- ps: Rename-Item .\upload32\nsis\mu_1.0.0b17.exe mu_$(get-date -f yyyy-MM-dd_HH_mm)_$($env:APPVEYOR_REPO_BRANCH)_$($env:APPVEYOR_REPO_COMMIT.subString(0,7))_32bit.exe
- ps: Rename-Item .\upload32\nsis\mu_1.0.0rc1.exe mu_$(get-date -f yyyy-MM-dd_HH_mm)_$($env:APPVEYOR_REPO_BRANCH)_$($env:APPVEYOR_REPO_COMMIT.subString(0,7))_32bit.exe

# Not a project with an msbuild file, build done at install.
build: None
Expand Down
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
Release History
---------------

1.0.0.rc.1
==========

* Various UI style clean ups to make sure the look of Mu is more consistent
between platforms. Thanks to Zander Brown for this valuable work.
* Added French translation of the user interface. Thanks to Gerald Quintana.
* Added Japanese translation of the user interface. Thanks to @MinoruInachi.
* Added Spanish translation of the user interface. Thanks to Carlos Pereira
Atencio with help from Oier Echaniz.
* Added Portuguese translation of the user interface. Thanks to Tiago Montes.
* Fixed various edge cases relating to the new-style flashing of micro:bits.
* Fixed off-by-one error in the visual debugger highlighting of code (caused
by Windows newlines not correctly handled).
* Various minor bugs and niggles have been fixed.

1.0.0.beta.17
=============

Expand Down
2 changes: 1 addition & 1 deletion mu/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
gettext.translation('mu', localedir=localedir,
languages=[language_code], fallback=True).install()

__version__ = '1.0.0.beta.17'
__version__ = '1.0.0.rc.1'
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications :: Qt',
'Environment :: MacOS X',
'Intended Audience :: Developers',
Expand Down
2 changes: 1 addition & 1 deletion win_installer32.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Application]
name=Mu
version=1.0.0b17
version=1.0.0rc1
entry_point=mu.app:run
icon=package/icons/win_icon.ico
publisher=Nicholas H.Tollervey
Expand Down
2 changes: 1 addition & 1 deletion win_installer64.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[Application]
name=Mu
version=1.0.0b17
version=1.0.0rc1
entry_point=mu.app:run
icon=package/icons/win_icon.ico
publisher=Nicholas H.Tollervey
Expand Down

0 comments on commit f975a57

Please sign in to comment.