Skip to content

Commit

Permalink
Merge branch 'release-0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
LourensVeen committed Oct 24, 2019
2 parents d462f74 + 17c07d6 commit a584f6f
Show file tree
Hide file tree
Showing 243 changed files with 21,374 additions and 2,102 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
*.egg-info
*.eggs

dist
build
/dist
/build
.cache
.pytest_cache
.mypy_cache
Expand All @@ -13,7 +13,7 @@ htmlcov
.coverage
coverage.xml

docs/_build
docs/doxygen
docs/apidocs
docs/source/examples/*.log

Expand Down
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"

# Travis comes with an old pytest that does not work with pytest-flake8
# So upgrade that first.
# So upgrade that first, and also install dependencies from binaries as much
# as possible to speed things up.
before_install:
- sudo apt-get install -y libssl-dev zlib1g-dev
- pip install --upgrade pytest
- pip install ymmsl==0.9.1
- pip install ymmsl==0.10.0

install:
- pip install codacy-coverage
Expand Down
25 changes: 25 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ Change Log
All notable changes to this project will be documented in this file.
This project adheres to `Semantic Versioning <http://semver.org/>`_.

0.2.0
*****

Added
-----

* Support for C++
* Support for MPI in C++

Improved
--------

* Cluster/HPC networking

Incompatible Changes
-------

* Fatal logic errors now throw instead of exiting, so that you have a chance
to shut down the model cleanly before exiting.
* Instance.exit_error() was replaced by Instance.error_shutdown(), which no
longer exits the process, it just shuts down the Instance.
* Central MUSCLE 3-managed settings are called settings everywhere now, not
parameters. As a result, the API has changed in several places.


0.1.0
*****

Expand Down
Loading

0 comments on commit a584f6f

Please sign in to comment.