Skip to content

Commit 0066ffa

Browse files
authored
Changes for 0.0.3 release (#346)
* Change development status * Set release date and version number * Bump date * Avoid duplicate label warnings
1 parent f65f858 commit 0066ffa

11 files changed

+13
-11
lines changed

CHANGES.rst

+5-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SCICO Release Notes
33
===================
44

55

6-
Version 0.0.3 (unreleased)
6+
Version 0.0.3 (2022-09-21)
77
----------------------------
88

99
• Change required packages and version numbers, including more recent version
@@ -19,8 +19,10 @@ Version 0.0.3 (unreleased)
1919
• Enable addition operator for functionals.
2020
• Completely new implementation of ``BlockArray`` class.
2121
• Additional solvers in ``scico.solver``.
22-
• New Huber norm (``HuberNorm``) and set distance functionals (``SetDistance`` and ``SquaredSetDistance``).
23-
• New loss functions ``loss.SquaredL2AbsLoss`` and ``loss.SquaredL2SquaredAbsLoss`` for phase retrieval problems.
22+
• New Huber norm (``HuberNorm``) and set distance functionals (``SetDistance``
23+
and ``SquaredSetDistance``).
24+
• New loss functions ``loss.SquaredL2AbsLoss`` and
25+
``loss.SquaredL2SquaredAbsLoss`` for phase retrieval problems.
2426
• Add interface to BM4D denoiser.
2527
• Change interfaces of ``linop.FiniteDifference`` and ``linop.DFT``.
2628
• Change filenames of some example scripts (and corresponding notebooks).

docs/source/classes.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Main SCICO Classes
55
******************
66

7-
.. include:: blockarray.rst
8-
.. include:: operator.rst
9-
.. include:: functional.rst
10-
.. include:: optimizer.rst
7+
.. include:: include/blockarray.rst
8+
.. include:: include/operator.rst
9+
.. include:: include/functional.rst
10+
.. include:: include/optimizer.rst

docs/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ class ExperimentAnalysis:
404404

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

409409

410410
# Rewrite module names for certain functions imported into scico.numpy so that they are

docs/source/examples.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Usage Examples
66
.. toctree::
77
:maxdepth: 1
88

9-
.. include:: exampledepend.rst
9+
.. include:: include/exampledepend.rst
1010

1111

1212
Organized by Application
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

scico/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
solving the inverse problems that arise in scientific imaging applications.
99
"""
1010

11-
__version__ = "0.0.3.dev0"
11+
__version__ = "0.0.3"
1212

1313
import sys
1414

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
extras_require=extras_require,
112112
classifiers=[
113113
"License :: OSI Approved :: BSD License",
114-
"Development Status :: 3 - Alpha",
114+
"Development Status :: 4 - Beta",
115115
"Intended Audience :: Education",
116116
"Intended Audience :: Science/Research",
117117
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)