Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: prepare for release v0.10.0 #192

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
Changelog
=========

# 0.10.0

* Added ``pyproximal.optimization.primal.AndersonProximalGradient`` solver
* Added ``pyproximal.proximal.HuberCircular`` operator
* Added `fungrad` method to ``pyproximal.proximal.Nonlinear``
* Modified ``pyproximal.proximal.Huber`` operator as previously
erroneously implemented using the definition of Circular Huber norm


# 0.9.0

* Added :py:class:`pyproximal.optimization.palm.iPALM` solver
* Added :py:func:`pyproximal.optimization.palm._backtracking` method to be used when `gammaf=None` and/or `gammag=None`
* Added :py:func:`pyproximal.utils.gradtest.gradtest_proximal` and :py:func:`pyproximal.utils.gradtest.gradtest_bilinear` methods
* Added `tol` to :py:class:`pyproximal.optimization.primal.ProximalPoint` and
:py:class:`pyproximal.optimization.primal.ProximalGradient` solvers
* Modified :py:class:`pyproximal.ProxOperator.precomposition` to allow `b` being also a vector
* Added ``pyproximal.optimization.palm.iPALM`` solver
* Added ``pyproximal.optimization.palm._backtracking`` method to be used when `gammaf=None` and/or `gammag=None`
* Added ``pyproximal.utils.gradtest.gradtest_proximal`` and ``pyproximal.utils.gradtest.gradtest_bilinear`` methods
* Added `tol` to ``pyproximal.optimization.primal.ProximalPoint`` and
``pyproximal.optimization.primal.ProximalGradient`` solvers
* Modified ``pyproximal.ProxOperator.precomposition`` to allow `b` being also a vector


# 0.8.0
Expand Down
11 changes: 11 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
Changelog
=========

Version 0.10.0
--------------
*Released on: 11/12/2024*

* Added :py:func:`pyproximal.optimization.primal.AndersonProximalGradient` solver
* Added :py:class:`pyproximal.proximal.HuberCircular` operator
* Added `fungrad` method to :py:class:`pyproximal.proximal.Nonlinear`
* Modified :py:class:`pyproximal.proximal.Huber` operator as previously
erroneously implemented using the definition of Circular Huber norm


Version 0.9.0
--------------
*Released on: 16/08/2024*
Expand Down
Loading