Skip to content

Commit

Permalink
MAINT: Release preparation
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzE committed May 14, 2020
1 parent 3e786e2 commit 8693acd
Show file tree
Hide file tree
Showing 7 changed files with 59 additions and 5 deletions.
2 changes: 1 addition & 1 deletion applications/mne_analyze/mne_analyze/info.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class CInfo
*/
static int RevisionVersion()
{
return 0;
return 1;
}

//=========================================================================================================
Expand Down
2 changes: 1 addition & 1 deletion applications/mne_scan/mne_scan/info.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class CInfo
*/
static int RevisionVersion()
{
return 0;
return 1;
}

//=========================================================================================================
Expand Down
2 changes: 1 addition & 1 deletion doc/doxygen/mne-cpp_doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = MNE-CPP
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.1.0
PROJECT_NUMBER = 0.1.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion doc/gh-pages/pages/install/binaries.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Stable Releases

| Version | Release | Dynamic Build | Static Build |
|-------|-------|-------|-------|
| [0.1.0](changelog.md#version-010) | 2020-05-04 | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } </span> | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.0/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } </span> |
| [0.1.1](changelog.md#version-011) | 2020-05-14 | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-windows-dynamic-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-linux-dynamic-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-macos-dynamic-x86_64.tar.gz){: .btn .btn-blue } </span> | <span class="fs-2"> [Windows](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-windows-static-x86_64.zip){: .btn .btn-blue } [Linux](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-linux-static-x86_64.tar.gz){: .btn .btn-blue } [MacOS](https://github.com/mne-tools/mne-cpp/releases/download/v0.1.1/mne-cpp-macos-static-x86_64.tar.gz){: .btn .btn-blue } </span> |

Development Release
{: .label .label-green }
Expand Down
53 changes: 53 additions & 0 deletions doc/gh-pages/pages/install/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,59 @@ nav_order: 1

# Changelog

## Version 0.1.1

### Applications

MNE Analyze:
* Fix bug during deployment of dynamically linked MNE Analyze version on macOS
* Renamed MNE Analyze extensions to plugins
* Fix issue with display width, now displays only full seconds as selected
* Jump viewer to selected annotation with 'J' key
* Removed seemingly unused timer debug outputs
* Documentations and variable name changes for readability
* Add plugin control views to menu bar
* Clean up command line output
* Add time information on the y-axis

MNE Scan:
* Fix problems with Source Localization and Connectivity plugins
* Fix problems where the QuickControlView was not populated with plugin control GUI widgets correctly

MNE Anonymize:
* Overall improvements and bug fixes to MNE Anonymize

### API libraries

All:
* Rename libraries and fix versioning
* Don't let libraries deploy themselves for windows builds. Instead include library copying to the mne-cpp.pri windeployqt function

Fiff:
* Fix bug when reading gantry_angle from Fiff file

### Tools
* Fix template class in Qt Creator wizard for MNE-CPP classes
* Update test and example Qt Creator wizards

### Continuous Integration
* Only branch off when a minor or major version bump occurred
* Remove folders which we do not want to ship from dynamic builds

### Documentation
* Updated information on continuous integration
* Improved build from source guide
* Updated guide on streaming pre-recorded data in MNE Scan

### Authors

People who contributed to this release (preceded by number of commits):

(115) Juan Garcia-Prieto
(43) Lorenz Esch
(2) Ruben Dörfel
(7) Gabriel Motta

## Version 0.1.0

### Changes
Expand Down
1 change: 1 addition & 0 deletions examples/ex_cancel_noise/ex_cancel_noise.pro
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ QT += network
QT -= gui

CONFIG += console
CONFIG -= app_bundle

TARGET = ex_cancel_noise

Expand Down
2 changes: 1 addition & 1 deletion mne-cpp.pri
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ defineReplace(copyResources) {

############################################### GLOBAL DEFINES ################################################

VERSION = 0.1.0
VERSION = 0.1.1

QMAKE_TARGET_PRODUCT = MNE-CPP
QMAKE_TARGET_DESCRIPTION = MNE-CPP Qt and Eigen based C++ library.
Expand Down

0 comments on commit 8693acd

Please sign in to comment.