Skip to content

Commit

Permalink
Changes for 0.0.3 release (#346)
Browse files Browse the repository at this point in the history
* Change development status

* Set release date and version number

* Bump date

* Avoid duplicate label warnings
  • Loading branch information
bwohlberg authored Sep 22, 2022
1 parent f65f858 commit 0066ffa
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 11 deletions.
8 changes: 5 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SCICO Release Notes
===================


Version 0.0.3 (unreleased)
Version 0.0.3 (2022-09-21)
----------------------------

• Change required packages and version numbers, including more recent version
Expand All @@ -19,8 +19,10 @@ Version 0.0.3 (unreleased)
• Enable addition operator for functionals.
• Completely new implementation of ``BlockArray`` class.
• Additional solvers in ``scico.solver``.
• New Huber norm (``HuberNorm``) and set distance functionals (``SetDistance`` and ``SquaredSetDistance``).
• New loss functions ``loss.SquaredL2AbsLoss`` and ``loss.SquaredL2SquaredAbsLoss`` for phase retrieval problems.
• New Huber norm (``HuberNorm``) and set distance functionals (``SetDistance``
and ``SquaredSetDistance``).
• New loss functions ``loss.SquaredL2AbsLoss`` and
``loss.SquaredL2SquaredAbsLoss`` for phase retrieval problems.
• Add interface to BM4D denoiser.
• Change interfaces of ``linop.FiniteDifference`` and ``linop.DFT``.
• Change filenames of some example scripts (and corresponding notebooks).
Expand Down
8 changes: 4 additions & 4 deletions docs/source/classes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Main SCICO Classes
******************

.. include:: blockarray.rst
.. include:: operator.rst
.. include:: functional.rst
.. include:: optimizer.rst
.. include:: include/blockarray.rst
.. include:: include/operator.rst
.. include:: include/functional.rst
.. include:: include/optimizer.rst
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ class ExperimentAnalysis:

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ["_build", "**tests**", "**spi**", "**README.rst", "**exampledepend.rst"]
exclude_patterns = ["_build", "**tests**", "**spi**", "**README.rst", "include"]


# Rewrite module names for certain functions imported into scico.numpy so that they are
Expand Down
2 changes: 1 addition & 1 deletion docs/source/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Usage Examples
.. toctree::
:maxdepth: 1

.. include:: exampledepend.rst
.. include:: include/exampledepend.rst


Organized by Application
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion scico/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
solving the inverse problems that arise in scientific imaging applications.
"""

__version__ = "0.0.3.dev0"
__version__ = "0.0.3"

import sys

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
extras_require=extras_require,
classifiers=[
"License :: OSI Approved :: BSD License",
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
Expand Down

0 comments on commit 0066ffa

Please sign in to comment.