Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joealcorn committed Jan 29, 2018
1 parent 2cc5cb8 commit 7eb31d6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 1,6 @@
Version 1.0 (unreleased)
Version 1.0 (29-01-2018)
------------------------
* Added: Sphinx documentation & docstrings
* Added: Conditionally disable Experiments with `enabled()`
* Added: Randomised execution order of experiments.
* Breaking: Experiment control & candidate blocks are now set up in a different way without the use of context processors.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 181,7 @@ You can also install a `tagged version`_ from Github

.. code::
$ pip install https://github.com/joealcorn/laboratory/archive/v0.4.2.tar.gz
$ pip install https://github.com/joealcorn/laboratory/archive/v1.0.tar.gz
Or the latest development version

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 31,7 @@ misbehaving, we have established a feedback loop to help us correct its behaviou
Quickstart
----------

See: :ref:`installation` or ``pip install laboratory==1.0.dev0``
See: :ref:`installation` or ``pip install laboratory``


With Laboratory you conduct an experiment with your known-good code as the
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 17,7 @@ You can also install a `tagged version`_ from Github

.. code::
$ pip install https://github.com/joealcorn/laboratory/archive/v0.4.2.tar.gz
$ pip install https://github.com/joealcorn/laboratory/archive/v1.0.tar.gz
Or the latest development version

Expand Down
2 changes: 1 addition & 1 deletion laboratory/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 1,6 @@
from .exceptions import LaboratoryException, MismatchException
from .experiment import Experiment

__version__ = '1.0.dev'
__version__ = '1.0'

__all__ = ('Experiment', 'LaboratoryException', 'MismatchException')

0 comments on commit 7eb31d6

Please sign in to comment.