-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.. currentmodule:: discretize | ||
|
||
.. _0.11.2_notes: | ||
|
||
=================================== | ||
``discretize`` 0.11.2 Release Notes | ||
=================================== | ||
|
||
January 28, 2025 | ||
|
||
This is a bugfix release for discretize with some minor updates. | ||
|
||
Updates | ||
======= | ||
|
||
Warning Messages | ||
---------------- | ||
* Added warning messages to test functions using uncontrolled randomized input that appear when run under | ||
`pytest` or `nosetest`, alerting the user to non-repeatable tests. | ||
* Changed the default for ``plotIt`` argument to ``False`` for testing functions. | ||
|
||
Fixed Bugs | ||
---------- | ||
* `is_scalar` will now return true for any numpy array broadcastable as a scalar (any array with ``arr.size == 1``). | ||
* Explicitly set diagonal balancing on internal plotting and readin routines that build a ``TreeMesh``. | ||
* Fixes formatting across line breaks in new warnings. | ||
* the `Zero` and `Identity` class now return expected truthiness values: ``bool(Zero()) == false`` and ``bool(Identity()) == True``. | ||
|
||
|
||
|
||
Contributors | ||
============ | ||
* @jcapriot | ||
* @santisoler | ||
* @prisae | ||
|
||
Pull requests | ||
============= | ||
|
||
* improve scalar test to handle arbitrary dimensional ndarrays by @jcapriot in `#388 <https://github.com/simpeg/discretize/pull/388>`__. | ||
* Set no diagonal balance when reading UBC tree meshes by @santisoler in `#386 <https://github.com/simpeg/discretize/pull/386>`__ | ||
* Fix small typos in diagonal_balance warning by @santisoler in `#387 <https://github.com/simpeg/discretize/pull/387>`__ | ||
* Implement truthiness for Zero and Identity by @jcapriot in `#389 <https://github.com/simpeg/discretize/pull/389>`__ | ||
* Fix formatting new warning by @prisae in `#390 <https://github.com/simpeg/discretize/pull/390>`__ | ||
* v0.11.2 staging @jcapriot in `#391 <https://github.com/simpeg/discretize/pull/390>`__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters