Skip to content

Commit

Permalink
Bump version to 0.7.2, make docs (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuolleko committed Jun 20, 2018
1 parent 6ac6956 commit e6ed1d6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Changelog
=========

dev
---
- Add support for kwargs to elfi.set_client
0.7.2 (2018-06-20)
------------------
- Added support for kwargs in elfi.set_client
- Added new example: inference of transmission dynamics of bacteria in daycare centers
- Added new example: Lorenz model

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
**Version 0.7.1 released!** See the CHANGELOG and [notebooks](https://github.com/elfi-dev/notebooks).
**Version 0.7.2 released!** See the CHANGELOG and [notebooks](https://github.com/elfi-dev/notebooks).

**NOTE:** For the time being NetworkX 2 is incompatible with ELFI.

Expand Down
5 changes: 2 additions & 3 deletions docs/usage/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ settings.
%precision 2
# Set an arbitrary seed and a global random state to keep the randomly generated quantities the same between runs
seed = 20170530
seed = 20170530 # this will be separately given to ELFI
np.random.seed(seed)
Inference with ELFI: case MA(2) model
Expand Down Expand Up @@ -355,8 +355,7 @@ passing through the graph.

Another optional keyword is the seed. This ensures that the outcome will
be always the same for the same data and model. If you leave it out, a
random seed will be taken. Giving ``seed='global'`` will use the global
numpy seed.
random seed will be taken.

.. code:: ipython3
Expand Down
2 changes: 1 addition & 1 deletion elfi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
__email__ = 'elfi-support@hiit.fi'

# make sure __version_ is on the last non-empty line (read by setup.py)
__version__ = '0.7.1'
__version__ = '0.7.2'

0 comments on commit e6ed1d6

Please sign in to comment.