Skip to content

Commit

Permalink
Merge pull request #223 from DeepSenseCA/rel_1.0.0rc2
Browse files Browse the repository at this point in the history
REL: Release version 1.0.0rc2
  • Loading branch information
scottclowe authored Oct 8, 2020
2 parents 040e2e3 + 3782a19 commit 255a19a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,29 @@ Security.
Unreleased
----------

`Full commit changelog <https://github.com/DeepSenseCA/echofilter/compare/1.0.0rc1...master>`__.
`Full commit changelog <https://github.com/DeepSenseCA/echofilter/compare/1.0.0rc2...master>`__.


Version `1.0.0rc2 <https://github.com/DeepSenseCA/echofilter/tree/1.0.0rc2>`__
------------------------------------------------------------------------------

Release date: 2020-09-23.
`Full commit changelog <https://github.com/DeepSenseCA/echofilter/compare/1.0.0rc1...1.0.0rc2>`__.

This is the second release candidate for the forthcoming v1.0.0 major release.

.. _v1.0.0rc2 Fixed:

Fixed
~~~~~~~

.. _v1.0.0rc2 Fixed Inference:

Inference
^^^^^^^^^

- Fix reference to ``echofilter.raw.loader.evl_loader`` when loading EVL files into Echoview.
(`#222 <https://github.com/DeepSenseCA/echofilter/pull/222>`__)


Version `1.0.0rc1 <https://github.com/DeepSenseCA/echofilter/tree/1.0.0rc1>`__
Expand Down
2 changes: 1 addition & 1 deletion echofilter/__meta__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "echofilter"
path = name.lower().replace("-", "_").replace(" ", "_")
version = "1.0.0rc1"
version = "1.0.0rc2"
author = "Scott C. Lowe"
author_email = "[email protected]"
description = "Remove echosounder noise by identifying the ocean floor and entrained air at the ocean surface."
Expand Down
4 changes: 3 additions & 1 deletion echofilter/inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -1529,7 +1529,9 @@ def change_line_color_thickness(line_name, color, thickness, ev_app=ev_app):
continue

# Import the line into Python
ts, depths, statuses = evl_loader(fname_full, return_status=True)
ts, depths, statuses = echofilter.raw.loader.evl_loader(
fname_full, return_status=True
)
line_status = echofilter.utils.mode(statuses)

# Edit the line, clipping if necessary
Expand Down

0 comments on commit 255a19a

Please sign in to comment.