From 7862e7f36991dece426b71176417e899322b21d6 Mon Sep 17 00:00:00 2001 From: Jonas Adler Date: Wed, 17 Aug 2016 10:05:06 +0200 Subject: [PATCH] REL: create 0.4.0 release notes --- doc/source/guide/glossary.rst | 2 +- doc/source/release_notes.rst | 8 ++++++++ odl/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/doc/source/guide/glossary.rst b/doc/source/guide/glossary.rst index 7f84fd3cf9b..7556e4311e2 100644 --- a/doc/source/guide/glossary.rst +++ b/doc/source/guide/glossary.rst @@ -81,7 +81,7 @@ Glossary \text{prox}_f(v) = \arg\min_x f(x) + (1/2)||x - v||_2^2 - proximal is also occationally used instead of ProxImaL, then refering to the proximal + proximal is also occasionally used instead of ProxImaL, then refering to the proximal modelling language for the solution of convex optimization problems. proximal factory diff --git a/doc/source/release_notes.rst b/doc/source/release_notes.rst index 715fa82ded6..52bc9827a0a 100644 --- a/doc/source/release_notes.rst +++ b/doc/source/release_notes.rst @@ -9,8 +9,16 @@ Release Notes Next release ============ + +ODL 0.4.0 Release Notes (2016-08-17) +==================================== + +This release marks the addition of the ``deform`` package to ODL, adding functionality for the deformation +of ``DiscreteLp`` elements. + New features ------------ +- Add ``deform`` package with linearized deformations (`PR 488`) - Add option to interface with ProxImaL solvers using ODL operators. (`PR 494`) ODL 0.3.1 Release Notes (2016-08-15) diff --git a/odl/__init__.py b/odl/__init__.py index 05bcc02b073..b29fcb9302e 100644 --- a/odl/__init__.py +++ b/odl/__init__.py @@ -25,7 +25,7 @@ from __future__ import absolute_import -__version__ = '0.3.1' +__version__ = '0.4.0' __all__ = ('diagnostics', 'discr', 'operator', 'set', 'space', 'solvers', 'tomo', 'trafos', 'util', 'phantom', 'deform') diff --git a/setup.py b/setup.py index aa387ed19c1..01c3c2486e6 100644 --- a/setup.py +++ b/setup.py @@ -89,7 +89,7 @@ def run_tests(self): setup( name='odl', - version='0.3.1', + version='0.4.0', description='Operator Discretization Library', long_description=long_description,