diff --git a/RELEASE.rst b/RELEASE.rst index 01a383a..3d16fee 100644 --- a/RELEASE.rst +++ b/RELEASE.rst @@ -4,8 +4,26 @@ Barrage .. contents:: **Versions**: +------------- +Version 0.2.0 +------------- + +``barrage`` improves ``sequential_from_config`` utility and updates documentation. + +~~~~~~~~~~~ +New Feature +~~~~~~~~~~~ + +* ``sequential_from_config`` supports references to ``network_params`` computed inside ``Transformers`` by specifying ``{{variable name}}``. + +~~~~~~~~~~~~ +Improvements +~~~~~~~~~~~~ + +* Assorted docstring and documentation improvements + ------------- Version 0.1.0 ------------- -Initial release of ``barrage``. +``barrage`` initial release. diff --git a/barrage/__init__.py b/barrage/__init__.py index 5070745..f519438 100644 --- a/barrage/__init__.py +++ b/barrage/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" from .log import logger # noqa from .engine import BarrageModel # noqa diff --git a/setup.py b/setup.py index fa7c86e..e961bd9 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name="barrage", - version="0.1.0", + version="0.2.0", description="A supervised deep learning tool.", long_description=long_description, author="Brian Nemsick",