diff --git a/CHANGES.rst b/CHANGES.rst index 577cb024e..4b07e0e0c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -3,19 +3,20 @@ SCICO Release Notes =================== -Version 0.0.4 (unreleased) +Version 0.0.4 (2023-08-03) ---------------------------- -• Add new `Function` class for representing array-to-array mappings with more than - one input. -• Add new methods and a function for computing Jacobian-vector products for `Operator` - objects. +• Add new `Function` class for representing array-to-array mappings with more + than one input. +• Add new methods and a function for computing Jacobian-vector products for + `Operator` objects. • Add new proximal ADMM solvers. • Add new ADMM subproblem solvers for problems involving a sum-of-convolutions operator. • Extend support for other ML models including UNet, ODP and MoDL. • Add functionality for training Flax-based ML models and for data generation. • Enable diagnostics for ML training loops. +• Support ``jaxlib`` and ``jax`` versions 0.4.3 to 0.4.14. • Change required packages and version numbers, including more recent version for `flax`. • Add new methods and a function for computing Jacobian-vector products for diff --git a/data b/data index 80c35007d..c43239596 160000 --- a/data +++ b/data @@ -1 +1 @@ -Subproject commit 80c35007dc595fc6553b1420c3d282c6e1fb04c1 +Subproject commit c43239596865c61fbfaf77d6e7ed82c7afd65ea5 diff --git a/scico/__init__.py b/scico/__init__.py index 69566ad6f..afed1eb3a 100644 --- a/scico/__init__.py +++ b/scico/__init__.py @@ -8,7 +8,7 @@ solving the inverse problems that arise in scientific imaging applications. """ -__version__ = "0.0.4.dev0" +__version__ = "0.0.4" import logging import sys