From 7eb31d6f33f39b4c5909c0ebbb177779fcf42a0b Mon Sep 17 00:00:00 2001 From: Joe Alcorn Date: Mon, 29 Jan 2018 21:28:54 +0000 Subject: [PATCH] 1.0 --- CHANGELOG | 3 ++- README.rst | 2 +- docs/index.rst | 2 +- docs/installation.rst | 2 +- laboratory/__init__.py | 2 +- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 5e8ccea..d66f467 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/README.rst b/README.rst index 3c24f7c..3ffd1aa 100644 --- a/README.rst +++ b/README.rst @@ -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 diff --git a/docs/index.rst b/docs/index.rst index f6d08a4..7c29a06 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -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 diff --git a/docs/installation.rst b/docs/installation.rst index e9d6ea1..39abeae 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -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 diff --git a/laboratory/__init__.py b/laboratory/__init__.py index 273dd6e..a2f97ec 100644 --- a/laboratory/__init__.py +++ b/laboratory/__init__.py @@ -1,6 +1,6 @@ from .exceptions import LaboratoryException, MismatchException from .experiment import Experiment -__version__ = '1.0.dev' +__version__ = '1.0' __all__ = ('Experiment', 'LaboratoryException', 'MismatchException')