diff --git a/CHANGELOG.md b/CHANGELOG.md index cf4398a..ff20230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.1.0 +* Added ``pyproximal.optimization.sr3.SR3`` solver +* Added ``pyproximal.projection.AffineSetProj`` and + ``pyproximal.AffineSet`` operators +* Fixed ``pyproximal.Huber`` operator + # 0.0.0 * First official release. diff --git a/docs/source/api/index.rst b/docs/source/api/index.rst index 2996c4d..42e884a 100755 --- a/docs/source/api/index.rst +++ b/docs/source/api/index.rst @@ -3,8 +3,11 @@ PyProximal API ============== -The Application Programming Interface (API) of PyProx... +The Application Programming Interface (API) of PyProximal is composed of 3 elements: +* *Orthogonal projections* +* *Proximal operators* +* *Solvers* Orthogonal projections ---------------------- diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index b0b04be..317a83f 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -3,10 +3,18 @@ Changelog ========= +Version 0.1.0 +-------------- +*Released on: 24/04/2020* + +* Added :py:class:`pyproximal.optimization.sr3.SR3` solver +* Added :py:class:`pyproximal.projection.AffineSetProj` and + :py:class:`pyproximal.AffineSet` operators +* Fixed :py:class:`pyproximal.Huber` operator + Version 0.0.0 ------------- - *Released on: 17/01/2021* * First official release.